aboutsummaryrefslogtreecommitdiff
path: root/lib/compat/src/strchrnul.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/compat/src/strchrnul.c')
-rw-r--r--lib/compat/src/strchrnul.c18
1 files changed, 18 insertions, 0 deletions
diff --git a/lib/compat/src/strchrnul.c b/lib/compat/src/strchrnul.c
new file mode 100644
index 0000000..7296060
--- /dev/null
+++ b/lib/compat/src/strchrnul.c
@@ -0,0 +1,18 @@
+/* SPDX-License-Identifier: LGPL-3.0-or-later */
+/*
+ * strchrnul.c
+ *
+ * Copyright (C) 2019 David Oberhollenzer <goliath@infraroot.at>
+ */
+#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