ls_p.h
来自「功能强大的ftp服务器源代码」· C头文件 代码 · 共 45 行
H
45 行
#ifndef __LS_P_H__#define __LS_P_H__ 1#if defined(GLOB_ABORTED) && !defined(GLOB_ABEND)#define GLOB_ABEND GLOB_ABORTED#endif#define CHUNK_SIZE page_sizestatic unsigned int colwidth;static unsigned int filenames;struct filename { struct filename *down; struct filename *right; int top; char line[1];};static struct filename *head;static struct filename *tail;static unsigned int matches;struct userid { struct userid *next; uid_t uid; char *name;};struct groupid { struct groupid *next; gid_t gid; char *name;};#ifndef NO_FTP_USERSstatic struct userid *user_head;static struct groupid *group_head;#endif/* ls options */int opt_a, opt_C, opt_d, opt_F, opt_l, opt_R, opt_r, opt_t, opt_S;#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?