home *** CD-ROM | disk | FTP | other *** search
/ Archive Magazine CD 1995 / Archive Magazine CD 1995.iso / discs / prog_disc / volume_5 / issue_08 / boota / C-source / h / argfuncs next >
Encoding:
Text File  |  1991-11-09  |  1.2 KB  |  22 lines

  1. /* > h.argfuncs - (c) Paul Witheridge - Version 1.0 - 05 Dec 1990    */
  2.  
  3. /*===================================================================*/
  4. /*  ArgFuncs header file                                             */
  5. /*===================================================================*/
  6.  
  7. void analargs(                     /* Analyse standard arguments     */
  8.   const int argc,                     /* Number of arguments         */
  9.   const char *const argv[],           /* Array of pointers to args   */
  10.   const int posnc,                    /* Number of positional args   */
  11.   const char **posnptr[],             /* Ptr to positional arg ptrs  */
  12.   const char options[],               /* Option characters           */
  13.   char *flags,                        /* Pointer to flag byte        */
  14.   const char optflags[],              /* Option flag settings        */
  15.   const char **optval[]) ;            /* Ptrs to value ptrs          */
  16.  
  17. void displaytext(                  /* Display help text etc          */
  18.   const char *text,                   /* Ptr to text                 */
  19.   const unsigned char tabs[]) ;       /* Ptr to array of tab values  */
  20.  
  21. /*===================================================================*/
  22.