?? getopt_long.h
字號(hào):
/* * sntop - simple network top - a top-like console network status tool * getopt.h - declarations needed for getopt_long() * 07.31.2000 * * robert m love <rml@tech9.net> * chris m rivera <cmrivera@ufl.edu> * * This is free software under the GNU Public License (see COPYING) * * Copyright (C) 2000 Robert M. Love and Christopher M. Rivera * * All code by the above authors unless otherwise specified. */#ifndef _GETOPT_LONG_H#define _GETOPT_LONG_H 1extern char *optarg;extern int optind;extern int opterr;extern int optopt;struct option { const char *name; int has_arg; int *flag; int val;};extern int getopt_long (int argc, char *const *argv, const char *shortopts, const struct option *longopts, int *longind);#endif /* _GETOPT_LONG_H */
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -