mirror of
https://gitlab.com/sortix/sortix.git
synced 2023-02-13 20:55:38 -05:00
Added strdup(3) to <string.h>.
This commit is contained in:
parent
563f831545
commit
90ea0d3e64
1 changed files with 1 additions and 1 deletions
|
@ -44,6 +44,7 @@ int strcmp(const char*, const char*);
|
|||
int strcoll(const char*, const char*);
|
||||
size_t strcspn(const char*, const char*);
|
||||
char* strcpy(char* restrict, const char* restrict);
|
||||
char* strdup(const char*);
|
||||
char* strerror(int);
|
||||
size_t strlen(const char*);
|
||||
int strncmp(const char*, const char*, size_t);
|
||||
|
@ -58,7 +59,6 @@ void* memccpy(void* restrict, const void* restrict, int, size_t);
|
|||
void* memmove(void*, const void*, size_t);
|
||||
char* stpncpy(char* restrict, const char* restrict, size_t);
|
||||
int strcoll_l(const char*, const char*, locale_t);
|
||||
char* strdup(const char*);
|
||||
char* strerror_l(int, locale_t);
|
||||
int strerror_r(int, char*, size_t);
|
||||
char* strncat(char* restrict, const char* restrict, size_t);
|
||||
|
|
Loading…
Reference in a new issue