diff options
| author | David E. O'Brien <obrien@FreeBSD.org> | 2002-10-03 19:51:04 +0000 |
|---|---|---|
| committer | David E. O'Brien <obrien@FreeBSD.org> | 2002-10-03 19:51:04 +0000 |
| commit | 1d6bd7d717ad4f178c929ebf35c97345edd3bb30 (patch) | |
| tree | d86ce91296bd233c716295d0285a7126fe6d67a7 | |
| parent | 8269e8c887accbffa1e193394fc22fde8d0973e3 (diff) | |
Notes
| -rw-r--r-- | include/string.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/string.h b/include/string.h index 77159910f326..d6951a8a3377 100644 --- a/include/string.h +++ b/include/string.h @@ -68,6 +68,7 @@ char *strchr(const char *, int); int strcmp(const char *, const char *); int strcoll(const char *, const char *); char *strcpy(char * __restrict, const char * __restrict); +char *stpcpy(char *, const char *); size_t strcspn(const char *, const char *); char *strerror(int); size_t strlen(const char *); |
