X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=ascii.h;h=2c0a42b023090cd72fa4ff25b4cbb71effdf619a;hp=a6c1d2c379701fe2ca44107d15915f7d0a5abc84;hb=8001ae8cd7eb2e6e588f9f7bceadd9fa4629df60;hpb=6833ce8bdca2d64e14485118f2a4417b7e1cb1b1 diff --git a/ascii.h b/ascii.h index a6c1d2c..2c0a42b 100644 --- a/ascii.h +++ b/ascii.h @@ -1,26 +1,12 @@ /* + * Copyright notice from original mutt: * Copyright (C) 2001 Thomas Roessler - * - * This program is free software; you can redistribute it - * and/or modify it under the terms of the GNU General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later - * version. - * - * This program is distributed in the hope that it will be - * useful, but WITHOUT ANY WARRANTY; without even the implied - * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR - * PURPOSE. See the GNU General Public License for more - * details. - * - * You should have received a copy of the GNU General Public - * License along with this program; if not, write to the Free - * Software Foundation, Inc., 59 Temple Place - Suite 330, - * Boston, MA 02111, USA. - * + * + * This file is part of mutt-ng, see http://www.muttng.org/. + * It's licensed under the GNU General Public License, + * please see the file GPL in the top level source directory. */ - /* * Versions of the string comparison functions which are * locale-insensitive. @@ -36,7 +22,7 @@ int ascii_tolower (int c); int ascii_strcasecmp (const char *a, const char *b); int ascii_strncasecmp (const char *a, const char *b, int n); -#define ascii_strcmp(a,b) mutt_strcmp(a,b) -#define ascii_strncmp(a,b,c) mutt_strncmp(a,b,c) +#define ascii_strcmp(a,b) str_cmp(a,b) +#define ascii_strncmp(a,b,c) str_ncmp(a,b,c) #endif