summaryrefslogtreecommitdiff
path: root/src/wchar/wcschr.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/wchar/wcschr.c')
-rw-r--r--src/wchar/wcschr.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/wchar/wcschr.c b/src/wchar/wcschr.c
index 7fdecb89..9b050769 100644
--- a/src/wchar/wcschr.c
+++ b/src/wchar/wcschr.c
@@ -5,6 +5,7 @@
wchar_t * wcschr(const wchar_t * s, wchar_t c)
{
SIGNAL_SAFE(0);
+ /* TODO: overlap */
while (*s) {
if (*s == c) {