home *** CD-ROM | disk | FTP | other *** search
/ Otherware / Otherware_1_SB_Development.iso / mac / hypercar / mactool / thinkcgu.sit / app ƒ / morestr.h < prev    next >
Encoding:
C/C++ Source or Header  |  1990-11-20  |  311 b   |  20 lines

  1. /*
  2. *    FILE:        morestr.h
  3. *    AUTHOR:        R. Gonzalez
  4. *    CREATED:    Sept 1, 1990
  5. *
  6. *    More useful string functions.
  7. */
  8.  
  9. # ifndef    morestr_h
  10. # define    morestr_h
  11.  
  12. # include    <stdio.h>
  13. # include    "class.h"        /* for boolean definition */
  14.  
  15. int        get_line(FILE*,char[],int);
  16. int        strtoint(char*);
  17. boolean    strsame(char*,char*);
  18.  
  19. # endif
  20.