libutil.h (f9f81f78d25d6c0e92dd89d82c9e9e04376fe668) libutil.h (1bc2362e07cefcd69039f2a713faf17832150846)
1/*
2 * Copyright (c) 1996 Peter Wemm <peter@FreeBSD.org>.
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, is permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 34 unchanged lines hidden (view full) ---

43
44/* Avoid pulling in all the include files for no need */
45struct termios;
46struct winsize;
47struct utmp;
48struct in_addr;
49
50__BEGIN_DECLS
1/*
2 * Copyright (c) 1996 Peter Wemm <peter@FreeBSD.org>.
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, is permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 34 unchanged lines hidden (view full) ---

43
44/* Avoid pulling in all the include files for no need */
45struct termios;
46struct winsize;
47struct utmp;
48struct in_addr;
49
50__BEGIN_DECLS
51int extattr_namespace_to_string(int namespace, char **string);
52int extattr_string_to_namespace(const char *string, int *namespace);
51void login __P((struct utmp *_ut));
52int login_tty __P((int _fd));
53int logout __P((const char *_line));
54void logwtmp __P((const char *_line, const char *_name, const char *_host));
55void trimdomain __P((char *_fullhost, int _hostsize));
56int openpty __P((int *_amaster, int *_aslave, char *_name,
57 struct termios *_termp, struct winsize *_winp));
58int forkpty __P((int *_amaster, char *_name,

--- 43 unchanged lines hidden ---
53void login __P((struct utmp *_ut));
54int login_tty __P((int _fd));
55int logout __P((const char *_line));
56void logwtmp __P((const char *_line, const char *_name, const char *_host));
57void trimdomain __P((char *_fullhost, int _hostsize));
58int openpty __P((int *_amaster, int *_aslave, char *_name,
59 struct termios *_termp, struct winsize *_winp));
60int forkpty __P((int *_amaster, char *_name,

--- 43 unchanged lines hidden ---