diff options
author | Bruno Haible <bruno@clisp.org> | 2007-02-05 03:12:26 +0000 |
---|---|---|
committer | Bruno Haible <bruno@clisp.org> | 2007-02-05 03:12:26 +0000 |
commit | 33a590e2d5c2f27dda24cdb16c5028857ed7d7e4 (patch) | |
tree | a5879cf1ff652eefd8bbee8ac4b5ce6751e274f2 /modules | |
parent | f410f7db6dc24c9ecd0b1f86c7b897d5a90202f4 (diff) | |
download | gnulib-33a590e2d5c2f27dda24cdb16c5028857ed7d7e4.tar.gz |
New module 'mbspbrk'.
Diffstat (limited to 'modules')
-rw-r--r-- | modules/mbspbrk | 30 | ||||
-rw-r--r-- | modules/string | 1 |
2 files changed, 31 insertions, 0 deletions
diff --git a/modules/mbspbrk b/modules/mbspbrk new file mode 100644 index 0000000000..79c9afd7c7 --- /dev/null +++ b/modules/mbspbrk @@ -0,0 +1,30 @@ +Description: +mbspbrk() function: search a string for any of a set of characters. + +Files: +lib/mbspbrk.c +m4/mbspbrk.m4 +m4/mbrtowc.m4 + +Depends-on: +mbuiter +string +mbschr +strpbrk + +configure.ac: +gl_FUNC_MBSPBRK +gl_STRING_MODULE_INDICATOR([mbspbrk]) + +Makefile.am: +lib_SOURCES += mbspbrk.c + +Include: +<string.h> + +License: +LGPL + +Maintainer: +Bruno Haible + diff --git a/modules/string b/modules/string index 561eaef940..fe9e61a311 100644 --- a/modules/string +++ b/modules/string @@ -27,6 +27,7 @@ string.h: string_.h -e 's|@''GNULIB_MBSCASECMP''@|$(GNULIB_MBSCASECMP)|g' \ -e 's|@''GNULIB_MBSCASESTR''@|$(GNULIB_MBSCASESTR)|g' \ -e 's|@''GNULIB_MBSCSPN''@|$(GNULIB_MBSCSPN)|g' \ + -e 's|@''GNULIB_MBSPBRK''@|$(GNULIB_MBSPBRK)|g' \ -e 's|@''GNULIB_MEMMEM''@|$(GNULIB_MEMMEM)|g' \ -e 's|@''GNULIB_MEMPCPY''@|$(GNULIB_MEMPCPY)|g' \ -e 's|@''GNULIB_MEMRCHR''@|$(GNULIB_MEMRCHR)|g' \ |