Linux 平台上getopt函数在Windos平台上的的实现算法

getopt.h文件代码:

#ifndef _GETOPT_
#define _GETOPT_

int getopt(int argc, char **argv, char *optstring);

extern char *optarg;  // returned arg to go with this option
extern int optind;  // index to next argv element to process
extern int opterr;  // should error messages be printed?
extern int optopt;  //

#define BADCH ('?')

#endif // _GETOPT

 

getopt.c文件代码:

/* got this off net.sources */
#include <stdio.h>
#include <string.h>
#include "getopt.h"

/*
 * get option letter from argument vector
 */
int
 opterr = 1,  // should error messages be printed?
 optind = 1,  // index into parent argv vector
 optopt;   // character checked for validity
char
 *optarg;  // argument associated with option

#define EMSG ""

char *progname;   // may also be defined elsewhere

static void
error(char *pch)
{
 if (!opterr) {
  return;  // without printing
 }
 fprintf(stderr, "%s: %s: %c/n",
  (NULL != progname) ? progname : "getopt", pch, optopt);
}

int
getopt(int argc, char **argv, char *ostr)
{
 static char *place = EMSG; /* option letter processing */
 register char *oli;   /* option letter list index */

 if (!*place) {
  // update scanning pointer
  if (optind >= argc || *(place = argv[optind]) != '-' || !*++place) {
   return EOF;
  }
  if (*place == '-') {
   // found "--"
   ++optind;
   return EOF;
  }
 }

 /* option letter okay? */
 if ((optopt = (int)*place++) == (int)':'
  || !(oli = strchr(ostr, optopt))) {
  if (!*place) {
   ++optind;
  }
  error("illegal option");
  return BADCH;
 }
 if (*++oli != ':') { 
  /* don't need argument */
  optarg = NULL;
  if (!*place)
   ++optind;
 } else {
  /* need an argument */
  if (*place) {
   optarg = place;  /* no white space */
  } else  if (argc <= ++optind) {
   /* no arg */
   place = EMSG;
   error("option requires an argument");
   return BADCH;
  } else {
   optarg = argv[optind];  /* white space */
  }
  place = EMSG;
  ++optind;
 }
 return optopt;   // return option letter
}

 

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值