8563e4d6e58f42a2c0094dfbbd18a5013d917c36
[unix-history] / usr / src / usr.bin / chpass / chpass.h
/*
* Copyright (c) 1988, 1993
* The Regents of the University of California. All rights reserved.
*
* %sccs.include.redist.c%
*
* @(#)chpass.h 8.1 (Berkeley) %G%
*/
typedef struct _entry {
char *prompt;
int (*func)(), restricted, len;
char *except, *save;
} ENTRY;
/* Field numbers. */
#define E_BPHONE 8
#define E_HPHONE 9
#define E_LOCATE 10
#define E_NAME 7
#define E_SHELL 12
extern ENTRY list[];
extern uid_t uid;