#ifndef KSTOOL_GETOPT_H
#defineKSTOOL_GETOPT_H// global
externint opterr,/* if error message should be printed */
optind,/* index into parent argv vector */
optopt,/* character checked for validity */
optreset;/* reset getopt */externconstchar*optarg;/* argument associated with option */intgetopt(intnargc,char*constnargv[],constchar*ostr);#endif