blob: b145a11d146eec4e6765f86f5dbbc0075bae0032 [file] [log] [blame]
Rich Felker0b44a032011-02-12 00:22:29 -05001#ifndef _UTMP_H
2#define _UTMP_H
3
Rich Felkereee150f2011-02-20 15:06:26 -05004#ifdef __cplusplus
5extern "C" {
6#endif
7
Rich Felker0b44a032011-02-12 00:22:29 -05008#include <utmpx.h>
9
Rich Felkerfa3bbbd2012-01-31 14:39:17 -050010#define ACCOUNTING 9
Rich Felker96e0aca2012-02-01 14:10:38 -050011#define UT_NAMESIZE 32
Rich Felkerfa3bbbd2012-01-31 14:39:17 -050012#define UT_HOSTSIZE 256
13
Rich Felker4a994402012-05-06 16:35:32 -040014struct lastlog {
15 time_t ll_time;
16 char ll_line[UT_LINESIZE];
17 char ll_host[UT_HOSTSIZE];
18};
19
Rich Felker0b44a032011-02-12 00:22:29 -050020#define ut_time ut_tv.tv_sec
21#define ut_name ut_user
22#define ut_exit __ut_exit
23#define e_termination __e_termination
24#define e_exit __e_exit
25#define utmp utmpx
Rich Felker0b44a032011-02-12 00:22:29 -050026#define utmpname(x) (-1)
27
Rich Felkereee150f2011-02-20 15:06:26 -050028void endutent(void);
29struct utmp *getutent(void);
30struct utmp *getutid(const struct utmp *);
31struct utmp *getutline(const struct utmp *);
32struct utmp *pututline(const struct utmp *);
33void setutent(void);
34
Rich Felkerf5ba2bc2011-03-18 21:52:26 -040035void updwtmp(const char *, const struct utmp *);
36
Rich Felker0b44a032011-02-12 00:22:29 -050037#define _PATH_UTMP "/dev/null"
38#define _PATH_WTMP "/dev/null"
39
Rich Felkereee150f2011-02-20 15:06:26 -050040#ifdef __cplusplus
41}
42#endif
43
Rich Felker0b44a032011-02-12 00:22:29 -050044#endif