strtok_r.h 1.2 KB

1234567891011121314151617181920212223242526272829
  1. /*--------------------------------------------------------------------------*/
  2. /* */
  3. /* File: STRTOK_R.H */
  4. /* Created: 20-September-2002 */
  5. /* Author: Peter Scandrett */
  6. /* Description: Module to provide a reentrant version of the 'C' */
  7. /* function STRTOK. */
  8. /* */
  9. /*--------------------------------------------------------------------------*/
  10. /*
  11. * $Log: strtok_r.h,v $
  12. * Revision 1.4 2004/07/27 19:29:16 drsung
  13. * *** empty log message ***
  14. *
  15. * Revision 1.3 2003/12/16 22:35:08 drsung
  16. * Portability issues
  17. *
  18. */
  19. #include <compiler.h>
  20. #ifdef __IMAGECRAFT__
  21. char *strtok_r(char *s, CONST char *delim, char **save_ptr);
  22. #endif
  23. char * strsep_r( char ** pp_str, CONST char * p_delim );
  24. char * strsep_rs( char ** pp_str, CONST char * p_delim, char * p_term );
  25. /*------------------------- end of file STRTOK_R.H -------------------------*/