rework langinfo code for ABI compat and for use by time code
[musl] / include / utmp.h
1 #ifndef _UTMP_H
2 #define _UTMP_H
3
4 #ifdef __cplusplus
5 extern "C" {
6 #endif
7
8 #include <utmpx.h>
9
10 #define ACCOUNTING 9
11 #define UT_NAMESIZE 32
12 #define UT_HOSTSIZE 256
13
14 struct lastlog {
15         time_t ll_time;
16         char ll_line[UT_LINESIZE];
17         char ll_host[UT_HOSTSIZE];
18 };
19
20 #define ut_time ut_tv.tv_sec
21 #define ut_name ut_user
22 #define ut_addr ut_addr_v6[0]
23 #define utmp utmpx
24 #define utmpname(x) (-1)
25
26 void         endutent(void);
27 struct utmp *getutent(void);
28 struct utmp *getutid(const struct utmp *);
29 struct utmp *getutline(const struct utmp *);
30 struct utmp *pututline(const struct utmp *);
31 void         setutent(void);
32
33 void updwtmp(const char *, const struct utmp *);
34
35 #define _PATH_UTMP "/dev/null/utmp"
36 #define _PATH_WTMP "/dev/null/wtmp"
37
38 #define UTMP_FILE _PATH_UTMP
39 #define WTMP_FILE _PATH_WTMP
40 #define UTMP_FILENAME _PATH_UTMP
41 #define WTMP_FILENAME _PATH_WTMP
42
43 #ifdef __cplusplus
44 }
45 #endif
46
47 #endif