]> pd.if.org Git - pdclib/blobdiff - functions/wchar/wcschr.c
* Test cleanups: surround the code for all functions by #ifndef REGTEST
[pdclib] / functions / wchar / wcschr.c
diff --git a/functions/wchar/wcschr.c b/functions/wchar/wcschr.c
new file mode 100644 (file)
index 0000000..51d20a4
--- /dev/null
@@ -0,0 +1,32 @@
+/* wcschr( const wchar_t *, wchar_t );\r
+\r
+   This file is part of the Public Domain C Library (PDCLib).\r
+   Permission is granted to use, modify, and / or redistribute at will.\r
+*/\r
+\r
+#include <wchar.h>\r
+#include <stddef.h>\r
+\r
+#ifndef REGTEST\r
+\r
+wchar_t *wcschr(const wchar_t * haystack, wchar_t needle)\r
+{\r
+    while(*haystack) {\r
+        if(*haystack == needle) return (wchar_t*) haystack;\r
+        haystack++;\r
+    }\r
+    return NULL;\r
+}\r
+\r
+\r
+#endif\r
+\r
+#ifdef TEST\r
+#include <_PDCLIB_test.h>\r
+\r
+int main( void )\r
+{\r
+    return TEST_RESULTS;\r
+}\r
+\r
+#endif\r