00001 /* 00002 * Copyright (c) 2005-2007 by KoanLogic s.r.l. - All rights reserved. 00003 */ 00004 #ifndef _LIBU_STRTOK_R_H_ 00005 #define _LIBU_STRTOK_R_H_ 00006 #include <u/libu_conf.h> 00007 00008 #ifdef HAVE_STRTOK_R 00009 #include <string.h> 00010 #else 00011 00012 #ifdef __cplusplus 00013 extern "C" { 00014 #endif 00015 00016 char *strtok_r(char *s, const char *delim, char **last); 00017 00018 #ifdef __cplusplus 00019 } 00020 #endif 00021 00022 #endif /* HAVE_STRTOK_R */ 00023 00024 #endif