您好,欢迎光临本网站![请登录][注册会员]  

搜索资源列表

  1. getopt源码下载及getopt_long源码下载

  2. 测试过,很好用~ getopt.c getopt.h为利用代码 其他两个为例子
  3. 所属分类:C

    • 发布日期:2009-05-14
    • 文件大小:11264
    • 提供者:dawndark
  1. 在linux下的getopt源码

  2. getopt源代码是用于linux和unix系统的函数源代码;非常有价值。希望对你有帮助。
  3. 所属分类:Linux

    • 发布日期:2009-06-23
    • 文件大小:3072
    • 提供者:elzhaorui
  1. getopt在win32的实现(含源代码)

  2. getopt是linux下libc中的库函数,用于方便的解析命令行参数。
  3. 所属分类:Linux

    • 发布日期:2009-09-30
    • 文件大小:9216
    • 提供者:bourbaki
  1. getopt.h getopt.c

  2. unix环境getopt的很好替代~自己移植unix程序到windows时,测试了好多版本,这个添加到工程,直接可以使用,有一个test.c,介绍了简单的使用~
  3. 所属分类:C

    • 发布日期:2009-10-18
    • 文件大小:5120
    • 提供者:renee8512
  1. getopt.c getopt.h under Windows

  2. "getopt" is a library that allows a parsing of arguments passed to a program. This is a useful library used in many software. There are many versions of the getopt library available, two popular versions being the BSD getopt and the GNU getopt.
  3. 所属分类:C

    • 发布日期:2010-01-28
    • 文件大小:5120
    • 提供者:hatpdb
  1. getopt文件 标准的

  2. getopt文件,标准的,我找了好久,现在传上来大家共享
  3. 所属分类:专业指导

    • 发布日期:2010-03-25
    • 文件大小:5120
    • 提供者:qiulengtang
  1. getopt.h文件

  2. getopt.h getopt.c 例子,VC6编译老缺的,
  3. 所属分类:C

    • 发布日期:2010-12-05
    • 文件大小:11264
    • 提供者:qwertycw
  1. getopt.c getopt.h under Windows

  2. getopt.c getopt.h under Windows getopt.c getopt.h
  3. 所属分类:C

    • 发布日期:2011-04-25
    • 文件大小:5120
    • 提供者:smiky
  1. 命令行解析函数getopt用法详解

  2. 命令行解析函数getopt使用方法详解,更方便分析命令参数
  3. 所属分类:C

    • 发布日期:2011-11-02
    • 文件大小:29696
    • 提供者:wjth07
  1. getopt.h和cpp

  2. 提供Linux下的getopt.h和cpp,可以放到windows下的vc直接编译通过
  3. 所属分类:C

    • 发布日期:2011-11-26
    • 文件大小:7168
    • 提供者:zhujm320
  1. getopt函数用法

  2. getopt函数用法 很详细 需要的下载
  3. 所属分类:C/C++

    • 发布日期:2011-12-19
    • 文件大小:831488
    • 提供者:sunqiyuan1985
  1. getopt.h getopt.c getopt_long 文件和函数说明

  2. getopt.h getopt.c getopt_long 函数说明
  3. 所属分类:C

    • 发布日期:2012-06-07
    • 文件大小:13312
    • 提供者:ftdy1
  1. RTMP可用的getOpt.h和getOpt.c

  2. 最近一直在研究RTMP库,发现里面需要用到getOpt.h和getOpt.c文件,不过在csdn上找了很久也没找到合适的。在国外一家源码网站上找到一个可用的,不敢独享,特发布出来。
  3. 所属分类:C++

    • 发布日期:2012-07-16
    • 文件大小:6144
    • 提供者:cll131421
  1. linux中getopt的用法

  2. linux中getopt的用法
  3. 所属分类:C

    • 发布日期:2012-08-28
    • 文件大小:25600
    • 提供者:qby207
  1. window getopt

  2. getopt是linux下方法,可有些时候我们要在window下用到。
  3. 所属分类:C

    • 发布日期:2013-04-16
    • 文件大小:5120
    • 提供者:yueguanyun
  1. C#getopt(命令行处理函数)

  2. 转自:http://www.codeproject.com/Articles/26502/GetOpt-for-NET C#中的getopt封装,方便处理cmd命令。添加引用后,使用范例如下: using CodePoints; using System; ... public static void Main ( string [] args ) { int c = 0, aflag = 0, bflag = 0; string cvalue = "(null)"; while ( ( c
  3. 所属分类:C#

    • 发布日期:2013-08-07
    • 文件大小:7168
    • 提供者:u010767709
  1. getopt windows实现

  2. 在 Windows 平台下使用 Linux 的 getopt, getopt_long, getopt_long_only 函数。
  3. 所属分类:C

    • 发布日期:2013-08-15
    • 文件大小:12288
    • 提供者:vc_zsy
  1. getopt多参数解析函数具体分析命令行参数解析

  2. getopt() 用来分析命令行参数。参数argc和argv是由main()传递的参数个数和内容。参数optstring 则代表欲处理的选项字符串。此函数会返回在argv 中下一个的选项字母,此字母会对应参数optstring 中的字母。如果选项字符串里的字母后接着冒号“:”,则表示还有相关的参数,全域变量optarg 即会指向此额外参数。如果getopt()找不到符合的参数则会印出错信息,并将全域变量optopt设为“?”字符,如果不希望getopt()印出错信息,则只要将全域变量opter
  3. 所属分类:C

    • 发布日期:2013-08-20
    • 文件大小:23552
    • 提供者:wangseon
  1. getopt的用法

  2. getopt被用来解析命令行选项参数。就不用自己写东东处理argv了
  3. 所属分类:Android

    • 发布日期:2014-02-18
    • 文件大小:39936
    • 提供者:vb45654
  1. windows 下getopt实现

  2. 这个文件描述了linux getopt在windows 下的实现方式
  3. 所属分类:网络基础

    • 发布日期:2014-07-02
    • 文件大小:108544
    • 提供者:u011039429
« 12 3 4 5 6 7 8 9 10 »