summaryrefslogtreecommitdiff
path: root/src/wchar/wcsncmp.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/wchar/wcsncmp.c')
-rw-r--r--src/wchar/wcsncmp.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/wchar/wcsncmp.c b/src/wchar/wcsncmp.c
index 0caa5a9e..cf4c68a8 100644
--- a/src/wchar/wcsncmp.c
+++ b/src/wchar/wcsncmp.c
@@ -11,6 +11,7 @@ int wcsncmp(const wchar_t * s1, const wchar_t * s2, size_t n)
ASSERT_NONNULL(s1);
ASSERT_NONNULL(s2);
+ /* TODO: overlap */
for (i = 0; i < n; i++) {
if (s1[i] > s2[i]) {