./wip/argtable2, ANSI C Library for parsing GNU style command line arguments

[ CVSweb ] [ Homepage ] [ RSS ] [ Required by ] [ Add to tracker ]


Branch: CURRENT, Version: 2.13, Package name: argtable2-2.13, Maintainer: kamelderouiche

Parsing a program's command line arguments has always been a distraction from
the main programming task at hand. The argtable library simplifies the job by
enabling the programmer to define the command line options directly in the
source code as a static array of structs and then pass that array to argtable
library functions which parse the command line accordingly. The values
extracted from the command line are deposited directly into user-defined program
variables where they can be accessed by the main program. Argtable can also
generate descriptions of the command line syntax from that same array for
display as on-line help.


Required to build:
[pkgtools/cwrappers]

Master sites:

RMD160: 61d82358dac5996efd9bdb46909f7c39c6f68b07
Filesize: 3248.48 KB

Version history: (Expand)


CVS history: (Expand)


   2012-09-24 18:56:26 by Aleksej Saushev | Files touched by this commit (144)
Log message:
Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days.
Mark packages that don't and might probably not have staged installation.
   2012-09-13 02:31:14 by Kamel Derouiche | Files touched by this commit (1)
Log message:
forcing dependency

   2012-09-02 23:51:46 by Kamel Derouiche | Files touched by this commit (4)
Log message:
Import argtable2-2.13 as wip/argtable2.

Parsing a program's command line arguments has always been a distraction from
the main programming task at hand. The argtable library simplifies the job by
enabling the programmer to define the command line options directly in the
source code as a static array of structs and then pass that array to argtable
library functions which parse the command line accordingly. The values
extracted from the command line are deposited directly into user-defined program
variables where they can be accessed by the main program. Argtable can also
generate descriptions of the command line syntax from that same array for
display as on-line help.

   2009-07-31 19:24:32 by Kamel Derouiche | Files touched by this commit (4) | Package removed
Log message:
devel/argtable replace this package

   2009-03-23 23:04:18 by Kamel Derouiche | Files touched by this commit (1)
Log message:
Change COMMENT

   2009-03-16 00:50:37 by Kamel Derouiche | Files touched by this commit (4) | Imported package
Log message:
Import argtable2-10 as wip/argtable2.

Argtable is an ANSI C library for parsing GNU style command line
options with a minimum of fuss. It enables a program's command line
syntax to be defined in the source code as an array of argtable structs
The command line is then parsed according to that specification and the
resulting values are returned in those same structs where they are
accessible to the main program