📄 addrlist.h
字号:
/*
** Declarations for the address list module.
*/
/*
** Data characteristics
**
** Maximum lengths of the various data (includes space for the
** terminating NUL byte), and maximum number of addresses.
*/
#define NAME_LENGTH 30 /* longest name allowed */
#define ADDR_LENGTH 100 /* longest address allowed */
#define PHONE_LENGTH 11 /* longest phone # allowed */
#define MAX_ADDRESSES 1000 /* # of addresses allowed */
/*
** Interface functions
**
** Given a name, find the corresponding address.
*/
char const *
lookup_address( char const *name );
/*
** Given a name, find the corresponding phone number.
*/
char const *
lookup_phone( char const *name );
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -