1*2fe8fb19SBen Gras /* $NetBSD: utmp.h,v 1.2 2009/01/11 02:46:25 christos Exp $ */
2*2fe8fb19SBen Gras
3*2fe8fb19SBen Gras /*
4*2fe8fb19SBen Gras * Copyright (c) 1988, 1993
5*2fe8fb19SBen Gras * The Regents of the University of California. All rights reserved.
6*2fe8fb19SBen Gras * (c) UNIX System Laboratories, Inc.
7*2fe8fb19SBen Gras * All or some portions of this file are derived from material licensed
8*2fe8fb19SBen Gras * to the University of California by American Telephone and Telegraph
9*2fe8fb19SBen Gras * Co. or Unix System Laboratories, Inc. and are reproduced herein with
10*2fe8fb19SBen Gras * the permission of UNIX System Laboratories, Inc.
11*2fe8fb19SBen Gras *
12*2fe8fb19SBen Gras * Redistribution and use in source and binary forms, with or without
13*2fe8fb19SBen Gras * modification, are permitted provided that the following conditions
14*2fe8fb19SBen Gras * are met:
15*2fe8fb19SBen Gras * 1. Redistributions of source code must retain the above copyright
16*2fe8fb19SBen Gras * notice, this list of conditions and the following disclaimer.
17*2fe8fb19SBen Gras * 2. Redistributions in binary form must reproduce the above copyright
18*2fe8fb19SBen Gras * notice, this list of conditions and the following disclaimer in the
19*2fe8fb19SBen Gras * documentation and/or other materials provided with the distribution.
20*2fe8fb19SBen Gras * 3. Neither the name of the University nor the names of its contributors
21*2fe8fb19SBen Gras * may be used to endorse or promote products derived from this software
22*2fe8fb19SBen Gras * without specific prior written permission.
23*2fe8fb19SBen Gras *
24*2fe8fb19SBen Gras * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
25*2fe8fb19SBen Gras * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26*2fe8fb19SBen Gras * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27*2fe8fb19SBen Gras * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
28*2fe8fb19SBen Gras * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
29*2fe8fb19SBen Gras * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30*2fe8fb19SBen Gras * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31*2fe8fb19SBen Gras * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32*2fe8fb19SBen Gras * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33*2fe8fb19SBen Gras * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34*2fe8fb19SBen Gras * SUCH DAMAGE.
35*2fe8fb19SBen Gras *
36*2fe8fb19SBen Gras * @(#)utmp.h 8.2 (Berkeley) 1/21/94
37*2fe8fb19SBen Gras */
38*2fe8fb19SBen Gras
39*2fe8fb19SBen Gras #ifndef _COMPAT_UTMP_H_
40*2fe8fb19SBen Gras #define _COMPAT_UTMP_H_
41*2fe8fb19SBen Gras
42*2fe8fb19SBen Gras struct utmp50 {
43*2fe8fb19SBen Gras char ut_line[UT_LINESIZE];
44*2fe8fb19SBen Gras char ut_name[UT_NAMESIZE];
45*2fe8fb19SBen Gras char ut_host[UT_HOSTSIZE];
46*2fe8fb19SBen Gras int32_t ut_time;
47*2fe8fb19SBen Gras };
48*2fe8fb19SBen Gras
49*2fe8fb19SBen Gras __BEGIN_DECLS
50*2fe8fb19SBen Gras static __inline void
utmp_to_utmp50(const struct utmp * ut,struct utmp50 * ut50)51*2fe8fb19SBen Gras utmp_to_utmp50(const struct utmp *ut, struct utmp50 *ut50)
52*2fe8fb19SBen Gras {
53*2fe8fb19SBen Gras (void)memcpy(ut50, ut, sizeof(*ut50));
54*2fe8fb19SBen Gras ut50->ut_time = (int32_t)ut->ut_time;
55*2fe8fb19SBen Gras }
56*2fe8fb19SBen Gras
57*2fe8fb19SBen Gras static __inline void
utmp50_to_utmp(const struct utmp50 * ut50,struct utmp * ut)58*2fe8fb19SBen Gras utmp50_to_utmp(const struct utmp50 *ut50, struct utmp *ut)
59*2fe8fb19SBen Gras {
60*2fe8fb19SBen Gras (void)memcpy(ut, ut50, sizeof(*ut50));
61*2fe8fb19SBen Gras ut->ut_time = ut50->ut_time;
62*2fe8fb19SBen Gras }
63*2fe8fb19SBen Gras
64*2fe8fb19SBen Gras struct utmp50 *getutent(void);
65*2fe8fb19SBen Gras struct utmp *__getutent50(void);
66*2fe8fb19SBen Gras __END_DECLS
67*2fe8fb19SBen Gras
68*2fe8fb19SBen Gras #endif /* !_COMPAT_UTMP_H_ */
69