150597Sbostic /*- 2*61995Sbostic * Copyright (c) 1991, 1993 3*61995Sbostic * The Regents of the University of California. All rights reserved. 450597Sbostic * 550597Sbostic * %sccs.include.redist.c% 650597Sbostic * 7*61995Sbostic * @(#)extern.h 8.1 (Berkeley) 06/06/93 850597Sbostic */ 950597Sbostic 1050597Sbostic extern char tbuf[1024]; /* Temp buffer for anybody. */ 1150597Sbostic extern int entries; /* Number of people. */ 1250613Sbostic extern DB *db; /* Database. */ 1350597Sbostic 1450597Sbostic void enter_lastlog __P((PERSON *)); 1550597Sbostic PERSON *enter_person __P((struct passwd *)); 1650597Sbostic void enter_where __P((struct utmp *, PERSON *)); 1750597Sbostic void err __P((const char *, ...)); 1850597Sbostic PERSON *find_person __P((char *)); 1950597Sbostic void lflag_print __P((void)); 2050597Sbostic int match __P((struct passwd *, char *)); 2150597Sbostic void netfinger __P((char *)); 2250597Sbostic PERSON *palloc __P((void)); 2350597Sbostic char *prphone __P((char *)); 2450597Sbostic void sflag_print __P((void)); 25