getopt.h
来自「base64编码」· C头文件 代码 · 共 11 行
H
11 行
extern int optind, optopt;extern char *optarg;/* We do the following naming side-step to permit testing our local getopt() on systems which include getopt() and declare it incompatibly in stdio.h or stdlib.h. */extern int Getopt(int nargc, char *nargv[], char *ostr);#define getopt(a, b, c) Getopt(a, b, c)
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?