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