home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / vol_300 / 344_01 / blksplit.h < prev    next >
Text File  |  1989-10-28  |  761b  |  28 lines

  1.  
  2. /*
  3.  *      HEADER:         ;
  4.  *      TITLE:          blksplit() PROTOTYPE;
  5.  *      DATE:           10/21/1989;
  6.  *      VERSION:        1.0;
  7.  *      FILENAME:       BLKSPLIT.H;
  8.  *      SEE-ALSO:       BLKSPLIT.C, PB.DOC;
  9.  *      AUTHORS:        Michael Kelly;
  10.  */
  11.  
  12.  
  13.  
  14. /*
  15.  *  int blksplit(
  16.  *         char *blk, char **strptr, const char *strsep, int maxstrings
  17.  *         );
  18.  *
  19.  *  blk-> NULL terminated text data block
  20.  *  strptr-> array of char *
  21.  *  strsep-> NULL terminated array of string seperator characters
  22.  *  maxstrings = maximum number of char * that will fit in strptr
  23.  *
  24.  *  splits raw text data block into strings : returns # of strings
  25.  *
  26.  */
  27. int blksplit(char *blk, char **strptr, const char *strsep, int maxstrings);
  28.