home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-387-Vol-3of3.iso / c / cuj9301.zip / 1101075A < prev    next >
Text File  |  1992-11-03  |  504b  |  19 lines

  1. /*****************************************************
  2.            File Name: STR_NGET.H
  3.          Description: Include file for STR_NGET.C
  4. ******************************************************/
  5.  
  6. #if !defined ( STR_NGET_DEFINED )
  7.  
  8.    #define STR_NGET_DEFINED
  9.  
  10.    char *str_nleft( char *Str, size_t Num );
  11.    char *str_nmid( char *Str, size_t Pos, size_t Num );
  12.    char *str_nright( char *Str, size_t Num );
  13.    char *str_rstr( char *Str, char *Find );
  14.  
  15. #endif
  16.  
  17. /* End of File */
  18. WRAP_EOF
  19.