diff options
Diffstat (limited to 'lib/compat')
-rw-r--r-- | lib/compat/Makemodule.am | 1 | ||||
-rw-r--r-- | lib/compat/strchrnul.c | 12 |
2 files changed, 13 insertions, 0 deletions
diff --git a/lib/compat/Makemodule.am b/lib/compat/Makemodule.am index 0426075..06fc95e 100644 --- a/lib/compat/Makemodule.am +++ b/lib/compat/Makemodule.am @@ -8,5 +8,6 @@ libcompat_a_SOURCES += lib/compat/w32_stdio.c libcompat_a_SOURCES += lib/compat/fnmatch.c libcompat_a_SOURCES += lib/compat/getopt.c libcompat_a_SOURCES += lib/compat/getopt_long.c +libcompat_a_SOURCES += lib/compat/strchrnul.c noinst_LIBRARIES += libcompat.a diff --git a/lib/compat/strchrnul.c b/lib/compat/strchrnul.c new file mode 100644 index 0000000..681b287 --- /dev/null +++ b/lib/compat/strchrnul.c @@ -0,0 +1,12 @@ +#include "config.h" +#include "compat.h" + +#ifndef HAVE_STRCHRNUL +char *strchrnul(const char *s, int c) +{ + while (*s && *((unsigned char *)s) != c) + ++s; + + return (char *)s; +} +#endif |