getopt() getopt_long()函数手册[中文翻译]

getopt()函数

getopt_long函数

函数原型(function prototype)

       #include <unistd.h>

       int getopt(int argc, char * const argv[],
                  const char *optstring);

       extern char *optarg;
       extern int optind, opterr, optopt;

       #include <getopt.h>

       int getopt_long(int argc, char * const argv[],
                  const char *optstring,
                  const struct option *longopts, int *longindex);

       int getopt_long_only(int argc, char * const argv[],
                  const char *optstring,
                  const struct option *longopts, int *longindex);

功能说明

参数说明

posted @ 2015-05-17 22:58  .小武.  阅读(339)  评论(0编辑  收藏  举报