From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00,FREEMAIL_FROM,XPRIO autolearn=ham autolearn_force=no version=3.4.4 X-Google-Thread: 103376,124189fcae964f11,start X-Google-Attributes: gid103376,public X-Google-Language: ENGLISH,ASCII-7-bit Path: g2news1.google.com!news1.google.com!news.glorb.com!wn14feed!worldnet.att.net!attbi_s51.POSTED!53ab2750!not-for-mail From: "Jeff C," Newsgroups: comp.lang.ada Subject: Command Line Argument Package X-Priority: 3 X-MSMail-Priority: Normal X-Newsreader: Microsoft Outlook Express 6.00.2800.1437 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1441 Message-ID: NNTP-Posting-Host: 24.147.74.171 X-Complaints-To: abuse@comcast.net X-Trace: attbi_s51 1090899849 24.147.74.171 (Tue, 27 Jul 2004 03:44:09 GMT) NNTP-Posting-Date: Tue, 27 Jul 2004 03:44:09 GMT Organization: Comcast Online Date: Tue, 27 Jul 2004 03:44:09 GMT Xref: g2news1.google.com comp.lang.ada:2406 Date: 2004-07-27T03:44:09+00:00 List-Id: I've posted a command line argument helper/utility package that I've had around for a while. I've used it on a few small things and had intended to clean it up some more and post it someday but it is already pretty useful. http://newserver.thecreems.com/article.php?story=20040726220542693 The purpose of this package is to provide a cleaner way (or at least a more fun way) to access command line arguments and to help automate the generation of help page for the program. There is some documentation in the header and a simple test program that demonstrates some of the concepts of the package. If anyone finds it useful I'll write up some more complete docs. It is a different approach than the GNU Getopts library (and the Similar Ada version at http://www.adapower.com/reuse/). If you are looking for a more traditional getopt approach, look there.