Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/include add strchrnull



details:   https://anonhg.NetBSD.org/src/rev/fc19de0f7431
branches:  trunk
changeset: 818408:fc19de0f7431
user:      christos <christos%NetBSD.org@localhost>
date:      Wed Oct 12 20:01:22 2016 +0000

description:
add strchrnull

diffstat:

 include/string.h |  3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diffs (17 lines):

diff -r 44f881f2fe04 -r fc19de0f7431 include/string.h
--- a/include/string.h  Wed Oct 12 20:01:12 2016 +0000
+++ b/include/string.h  Wed Oct 12 20:01:22 2016 +0000
@@ -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 @@
 __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 *);



Home | Main Index | Thread Index | Old Index