X-Git-Url: http://git.marmaro.de/?p=mmh;a=blobdiff_plain;f=sbr%2Fstrcasecmp.c;h=d59c10c8d190d92d93d6bb8cc390f61c2a47845f;hp=79fc5a85a0d14af67c03e462f6a6098c5f23c62f;hb=1fb6287fc4986668e8f49d7c3bdca27d53e267af;hpb=b067ff5c465a5d243ce5a19e562085a9a1a97215 diff --git a/sbr/strcasecmp.c b/sbr/strcasecmp.c index 79fc5a8..d59c10c 100644 --- a/sbr/strcasecmp.c +++ b/sbr/strcasecmp.c @@ -1,21 +1,22 @@ /* - * 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 +#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;