diff options
author | zeising <zeising@FreeBSD.org> | 2013-02-13 15:46:33 +0000 |
---|---|---|
committer | zeising <zeising@FreeBSD.org> | 2013-02-13 15:46:33 +0000 |
commit | 742b0cd5e431c7658486d03808994218cb67ff73 (patch) | |
tree | 3a292c5a3296a11ce621635ac4655f56153629f7 /lib/libc/string/Symbol.map | |
parent | 5f9d7af0e4c93982da4e8a81a5dc98d58db74544 (diff) | |
download | FreeBSD-src-742b0cd5e431c7658486d03808994218cb67ff73.zip FreeBSD-src-742b0cd5e431c7658486d03808994218cb67ff73.tar.gz |
Add strchrnul(), a GNU function similar to strchr(), except that it returns
a pointer to the end of the string, rather than NULL, if the character was
not found.
Approved by: theraven
Diffstat (limited to 'lib/libc/string/Symbol.map')
-rw-r--r-- | lib/libc/string/Symbol.map | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/libc/string/Symbol.map b/lib/libc/string/Symbol.map index ef23465..8e80165 100644 --- a/lib/libc/string/Symbol.map +++ b/lib/libc/string/Symbol.map @@ -94,6 +94,7 @@ FBSD_1.1 { FBSD_1.3 { strcasecmp_l; strcasestr_l; + strchrnul; strncasecmp_l; wcswidth_l; wcwidth_l; |