📄 usertabl.h
字号:
/*
u s e r t a b l .h
routines included in usertabl.c
Copyright (c) 1989, 1990 Andrew H. Derbyshire
Update History:
18Mar90 Create from router.c ahd
*/
#ifndef __USERTABL
#define __USERTABLE
#define UUCPSHELL "uucp" /* Shell for UUCP users */
struct UserTable {
char *uid; /* User id for this host to login via */
char *beep; /* Tone to beep at upon delivery */
char *password; /* Password for this host to login via */
char *realname; /* Name of the host in question */
char *homedir; /* Home directory for user */
char *sh; /* Shell for this user */
struct HostSecurity *hsecure; /* Pointer to security information */
};
extern struct UserTable *users; /* Public to allow router.c to use it */
extern size_t UserElements; /* Public to allow router.c to use it */
struct UserTable *checkuser ( const char *user );
char *NextField( char *input );
#define BADUSER NULL
#define EMPTY_GCOS "????"
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -