xref: /original-bsd/usr.bin/finger/extern.h (revision 27393bdf)
1 /*-
2  * Copyright (c) 1991, 1993
3  *	The Regents of the University of California.  All rights reserved.
4  *
5  * %sccs.include.redist.c%
6  *
7  *	@(#)extern.h	8.2 (Berkeley) 04/28/95
8  */
9 
10 extern char tbuf[1024];			/* Temp buffer for anybody. */
11 extern int entries;			/* Number of people. */
12 extern DB *db;				/* Database. */
13 
14 void	 enter_lastlog __P((PERSON *));
15 PERSON	*enter_person __P((struct passwd *));
16 void	 enter_where __P((struct utmp *, PERSON *));
17 PERSON	*find_person __P((char *));
18 void	 lflag_print __P((void));
19 int	 match __P((struct passwd *, char *));
20 void	 netfinger __P((char *));
21 PERSON	*palloc __P((void));
22 char	*prphone __P((char *));
23 void	 sflag_print __P((void));
24