1
0
mirror of https://github.com/adtools/clib2.git synced 2025-12-08 14:59:05 +00:00

- Added asctime_r(), ctime_r(), gmtime_r(), localtime_r() and strtok_r().

git-svn-id: file:///Users/olsen/Code/migration-svn-zu-git/logical-line-staging/clib2/trunk@14773 87f5fb63-7c3d-0410-a384-fd976d0f7a62
This commit is contained in:
Olaf Barthel
2004-11-17 19:07:26 +00:00
parent 186887bba5
commit 2d5193371a
8 changed files with 173 additions and 48 deletions

View File

@ -1,5 +1,5 @@
/*
* $Id: string.h,v 1.4 2004-11-14 11:06:29 obarthel Exp $
* $Id: string.h,v 1.5 2004-11-17 19:07:26 obarthel Exp $
*
* :ts=4
*
@ -127,6 +127,10 @@ extern size_t strlcat(char *dst, const char *src, size_t siz);
/****************************************************************************/
extern char * strtok_r(char *str, const char *separator_set,char ** state_ptr);
/****************************************************************************/
#ifdef __cplusplus
}
#endif /* __cplusplus */