1 /* Declarations for GNU's read utmp module.
2 Copyright (C) 92, 93, 94, 95, 96, 1997 Free Software Foundation, Inc.
4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation; either version 2, or (at your option)
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, write to the Free Software Foundation,
16 Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
18 /* Written by jla; revised by djm */
20 #ifndef __READUTMP_H__
21 # define __READUTMP_H__
24 # include <sys/types.h>
28 # define UTMP_STRUCT_NAME utmpx
29 # define UT_TIME_MEMBER(UT_PTR) ((UT_PTR)->ut_tv.tv_sec)
32 # define UTMP_STRUCT_NAME utmp
33 # define UT_TIME_MEMBER(UT_PTR) ((UT_PTR)->ut_time)
36 typedef struct UTMP_STRUCT_NAME STRUCT_UTMP
;
39 # ifdef HAVE_SYS_PARAM_H
40 # include <sys/param.h>
48 # if !defined (UTMP_FILE) && defined (_PATH_UTMP)
49 # define UTMP_FILE _PATH_UTMP
52 # if !defined (WTMP_FILE) && defined (_PATH_WTMP)
53 # define WTMP_FILE _PATH_WTMP
56 # ifdef UTMPX_FILE /* Solaris, SysVr4 */
58 # define UTMP_FILE UTMPX_FILE
61 # ifdef WTMPX_FILE /* Solaris, SysVr4 */
63 # define WTMP_FILE WTMPX_FILE
67 # define UTMP_FILE "/etc/utmp"
71 # define WTMP_FILE "/etc/wtmp"
75 # if defined (__STDC__) && __STDC__
76 # define PARAMS(Args) Args
78 # define PARAMS(Args) ()
81 extern char *extract_trimmed_name
PARAMS ((const STRUCT_UTMP
*ut
));
82 extern int read_utmp
PARAMS ((const char *filename
,
83 int *n_entries
, STRUCT_UTMP
**utmp_buf
));
85 #endif /* __READUTMP_H__ */