home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Internet Tools 1993 July / Internet Tools.iso / RockRidge / mail / mmdf / mmdf-IIb.43 / lib / util / tai_noop.c < prev    next >
Encoding:
C/C++ Source or Header  |  1986-02-01  |  590 b   |  27 lines

  1. #include "util.h"
  2.  
  3. /* Perform process start-up tailoring */
  4.  
  5. /*  This version is a No-Op.  It presumes that the tailoring
  6.  *  information has been compiled-in and that an external
  7.  *  file is not to be consulted.
  8.  */
  9.  
  10. tai_init (filename)    /* prepare to get tailoring information */
  11.     char filename[]; /* location of the info */
  12. {
  13.     return (OK);
  14. }
  15.  
  16. tai_get (max, argv)    /* get next parsed tailoring line */
  17.     int max;    /* maximum number of allowable fields */
  18.     char *argv[];    /* array to hold pointers to field elements */
  19. {
  20.     return (0);    /* return end-of-list */
  21. }
  22.  
  23. tai_end ()
  24. {
  25.     return (OK);
  26. }
  27.