From afb85e9d6ca1de8f1ecb267e8c30b88ba4382820 Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Thu, 6 Jul 2000 07:16:59 +0000 Subject: Rework all the string handling. Make const stuff be constified. -Erik --- libc/string/strncasecmp.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libc/string/strncasecmp.c') diff --git a/libc/string/strncasecmp.c b/libc/string/strncasecmp.c index 561f72a76..c55f259d4 100644 --- a/libc/string/strncasecmp.c +++ b/libc/string/strncasecmp.c @@ -8,8 +8,8 @@ int strncasecmp(s, d, l) -char *s; -char *d; +const char *s; +const char *d; size_t l; { while(l>0) -- cgit v1.2.3