diff options
| author | christos <christos@NetBSD.org> | 2006-08-12 23:50:13 +0000 |
|---|---|---|
| committer | christos <christos@NetBSD.org> | 2006-08-12 23:50:13 +0000 |
| commit | f4254d2cefd3312e88d52df950d628ed9421387c (patch) | |
| tree | 78ba2241337ef8b1df9be56752d96dc3b328f8a2 /include/string.h | |
| parent | cbfb283c6503db5eeb83d9482cdc38463b6f8477 (diff) | |
Add stresep and strndup.
Diffstat (limited to 'include/string.h')
| -rw-r--r-- | include/string.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/string.h b/include/string.h index 9de8200d301..d9c9ff84967 100644 --- a/include/string.h +++ b/include/string.h @@ -1,4 +1,4 @@ -/* $NetBSD: string.h,v 1.30 2005/07/28 16:26:53 christos Exp $ */ +/* $NetBSD: string.h,v 1.31 2006/08/12 23:50:13 christos Exp $ */ /*- * Copyright (c) 1990, 1993 @@ -86,6 +86,8 @@ char *strcasestr(const char *, const char *); size_t strlcat(char *, const char *, size_t); size_t strlcpy(char *, const char *, size_t); char *strsep(char **, const char *); +char *stresep(char **, const char *, int); +char *strndup(const char *, size_t); #endif __END_DECLS |
