/*--------------------------------------------------------------------------*/ /* */ /* File: STRTOK_R.H */ /* Created: 20-September-2002 */ /* Author: Peter Scandrett */ /* Description: Module to provide a reentrant version of the 'C' */ /* function STRTOK. */ /* */ /*--------------------------------------------------------------------------*/ /* * $Log: strtok_r.h,v $ * Revision 1.4 2004/07/27 19:29:16 drsung * *** empty log message *** * * Revision 1.3 2003/12/16 22:35:08 drsung * Portability issues * */ #include #ifdef __IMAGECRAFT__ char *strtok_r(char *s, CONST char *delim, char **save_ptr); #endif char * strsep_r( char ** pp_str, CONST char * p_delim ); char * strsep_rs( char ** pp_str, CONST char * p_delim, char * p_term ); /*------------------------- end of file STRTOK_R.H -------------------------*/