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

- unsetenv() now returns a status value.

- Corrected the function prototype for wcspbrk().

- Added function prototypes for mbrtowc_l(), wcscoll_l(), wcscspn() and wcsrchr().


git-svn-id: file:///Users/olsen/Code/migration-svn-zu-git/logical-line-staging/clib2/trunk@15196 87f5fb63-7c3d-0410-a384-fd976d0f7a62
This commit is contained in:
Olaf Barthel
2008-04-30 14:34:03 +00:00
parent f100199861
commit 0b19424148
4 changed files with 31 additions and 7 deletions

View File

@ -1,5 +1,5 @@
/*
* $Id: stdlib.h,v 1.18 2006-11-13 09:51:53 obarthel Exp $
* $Id: stdlib.h,v 1.19 2008-04-30 14:34:03 obarthel Exp $
*
* :ts=4
*
@ -195,7 +195,7 @@ extern int rand_r(unsigned int * seed);
extern int setenv(const char *name, const char *value, int overwrite);
extern int putenv(const char *string);
extern void unsetenv(const char *name);
extern int unsetenv(const char *name);
extern char * mktemp(char * name_template);
extern int mkstemp(char *name_template);
extern char * mkdtemp(char *name_template);