Nut/OS  4.10.3
API Reference
strtok_r.h
Go to the documentation of this file.
00001 /*--------------------------------------------------------------------------*/
00002 /*                                                                          */
00003 /*  File:           STRTOK_R.H                                              */
00004 /*  Created:        20-September-2002                                       */
00005 /*  Author:         Peter Scandrett                                         */
00006 /*  Description:    Module to provide a reentrant version of the 'C'        */
00007 /*                      function STRTOK.                                    */
00008 /*                                                                          */
00009 /*--------------------------------------------------------------------------*/
00010 
00011 /*
00012  * $Log$
00013  * Revision 1.4  2004/07/27 19:29:16  drsung
00014  * *** empty log message ***
00015  *
00016  * Revision 1.3  2003/12/16 22:35:08  drsung
00017  * Portability issues
00018  *
00019  */
00020 
00021 #include <compiler.h>
00022 
00023 #ifdef __IMAGECRAFT__
00024 char *strtok_r(char *s, CONST char *delim, char **save_ptr) NUT_DEPRECATED;
00025 #endif
00026 char * strsep_r(  char ** pp_str, CONST char * p_delim );
00027 char * strsep_rs( char ** pp_str, CONST char * p_delim, char * p_term );
00028 
00029 /*------------------------- end of file STRTOK_R.H -------------------------*/