Module Name: src Committed By: christos Date: Wed Oct 12 20:01:22 UTC 2016
Modified Files: src/include: string.h Log Message: add strchrnull To generate a diff of this commit: cvs rdiff -u -r1.50 -r1.51 src/include/string.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/include/string.h diff -u src/include/string.h:1.50 src/include/string.h:1.51 --- src/include/string.h:1.50 Thu Mar 10 13:53:48 2016 +++ src/include/string.h Wed Oct 12 16:01:22 2016 @@ -1,4 +1,4 @@ -/* $NetBSD: string.h,v 1.50 2016/03/10 18:53:48 leot Exp $ */ +/* $NetBSD: string.h,v 1.51 2016/10/12 20:01:22 christos Exp $ */ /*- * Copyright (c) 1990, 1993 @@ -98,6 +98,7 @@ __END_DECLS __BEGIN_DECLS void *memmem(const void *, size_t, const void *, size_t); char *strcasestr(const char *, const char *); +char *strchrnul(const char *, int); size_t strlcat(char *, const char *, size_t); size_t strlcpy(char *, const char *, size_t); char *strsep(char **, const char *);