X-Git-Url: http://git.marmaro.de/?a=blobdiff_plain;f=sbr%2Fstrcasecmp.c;h=608b4a582d703f2e26be0f6f743890eeaf925dbf;hb=dee26acad9bca6aec7dca5c428b07a386909081b;hp=79fc5a85a0d14af67c03e462f6a6098c5f23c62f;hpb=b067ff5c465a5d243ce5a19e562085a9a1a97215;p=mmh diff --git a/sbr/strcasecmp.c b/sbr/strcasecmp.c index 79fc5a8..608b4a5 100644 --- a/sbr/strcasecmp.c +++ b/sbr/strcasecmp.c @@ -1,21 +1,21 @@ /* - * strcasecmp.c -- compare strings, ignoring case - * - * This code is Copyright (c) 2002, by the authors of nmh. See the - * COPYRIGHT file in the root directory of the nmh distribution for - * complete copyright information. - */ +** strcasecmp.c -- compare strings, ignoring case +** +** This code is Copyright (c) 2002, by the authors of nmh. See the +** COPYRIGHT file in the root directory of the nmh distribution for +** complete copyright information. +*/ #include /* - * Our version of strcasecmp has to deal with NULL strings. - * Once that is fixed in the rest of the code, we can use the - * native version, instead of this one. - */ +** Our version of strcasecmp has to deal with NULL strings. +** Once that is fixed in the rest of the code, we can use the +** native version, instead of this one. +*/ int -mh_strcasecmp (const char *s1, const char *s2) +mh_strcasecmp(const char *s1, const char *s2) { const unsigned char *us1, *us2;