extern.h revision 201140
11541Srgrimes/*-
21541Srgrimes * Copyright (c) 1991, 1993
31541Srgrimes *	The Regents of the University of California.  All rights reserved.
41541Srgrimes *
51541Srgrimes * Redistribution and use in source and binary forms, with or without
61541Srgrimes * modification, are permitted provided that the following conditions
71541Srgrimes * are met:
81541Srgrimes * 1. Redistributions of source code must retain the above copyright
91541Srgrimes *    notice, this list of conditions and the following disclaimer.
101541Srgrimes * 2. Redistributions in binary form must reproduce the above copyright
111541Srgrimes *    notice, this list of conditions and the following disclaimer in the
121541Srgrimes *    documentation and/or other materials provided with the distribution.
131541Srgrimes * 3. All advertising materials mentioning features or use of this software
141541Srgrimes *    must display the following acknowledgement:
151541Srgrimes *	This product includes software developed by the University of
161541Srgrimes *	California, Berkeley and its contributors.
171541Srgrimes * 4. Neither the name of the University nor the names of its contributors
181541Srgrimes *    may be used to endorse or promote products derived from this software
191541Srgrimes *    without specific prior written permission.
201541Srgrimes *
211541Srgrimes * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
221541Srgrimes * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
231541Srgrimes * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
241541Srgrimes * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
251541Srgrimes * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
261541Srgrimes * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
271541Srgrimes * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
281541Srgrimes * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
291541Srgrimes * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
301541Srgrimes * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
311541Srgrimes * SUCH DAMAGE.
321541Srgrimes *
3322521Sdyson *	@(#)extern.h	8.2 (Berkeley) 4/28/95
3450477Speter * $FreeBSD: head/usr.bin/finger/extern.h 201140 2009-12-28 20:54:34Z ed $
351541Srgrimes */
3622521Sdyson
3722521Sdyson#ifndef	_EXTERN_H_
3822521Sdyson#define	_EXTERN_H_
3922521Sdyson
4022521Sdysonextern char tbuf[1024];			/* Temp buffer for anybody. */
4122521Sdysonextern int entries;			/* Number of people. */
4222521Sdysonextern DB *db;				/* Database. */
4322521Sdysonextern int d_first;
4422521Sdysonextern sa_family_t family;
4522521Sdysonextern int gflag;
4654444Seivindextern int lflag;
4754444Seivindextern time_t now;
4854444Seivindextern int oflag;
4954444Seivindextern int pplan;			/* don't show .plan/.project */
5054444Seivindextern int invoker_root;		/* Invoked by root */
5145058Seivind
5222521Sdysonvoid	 enter_lastlog(PERSON *);
5322521SdysonPERSON	*enter_person(struct passwd *);
5422521Sdysonvoid	 enter_where(struct utmpx *, PERSON *);
5522521SdysonPERSON	*find_person(char *);
5622521Sdysonint	 hide(struct passwd *);
5722521Sdysonvoid	 lflag_print(void);
5851679Seivindint	 match(struct passwd *, const char *);
5951679Seivindvoid	 netfinger(char *);
6051679SeivindPERSON	*palloc(void);
6151679Seivindchar	*prphone(char *);
6254444Seivindvoid	 sflag_print(void);
6351679Seivindint	 show_text(const char *, const char *, const char *);
6451679Seivind
6551679Seivind#endif /* !_EXTERN_H_ */
6622521Sdyson