X-Git-Url: http://git.madism.org/?a=blobdiff_plain;f=lib.h;h=96f136013664fa4a8fa5fda5a62af8a713edebae;hb=f926d24934f003e299db986d6689106ec2dca7f0;hp=2bda25d2fa06e70b03b3b30457d60af757b8d059;hpb=6833ce8bdca2d64e14485118f2a4417b7e1cb1b1;p=apps%2Fmadmutt.git diff --git a/lib.h b/lib.h index 2bda25d..96f1360 100644 --- a/lib.h +++ b/lib.h @@ -1,36 +1,22 @@ /* + * Copyright notice from original mutt: * Copyright (C) 1996-2000 Michael R. Elkins * Copyright (C) 1999-2000 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. + */ /* mutt functions which are generally useful. */ #ifndef _LIB_H # define _LIB_H -# include "config.h" - # include # include # ifdef HAVE_UNISTD_H -# include /* needed for SEEK_SET */ +# include /* needed for SEEK_SET */ # endif # include # include @@ -93,6 +79,7 @@ on some systems */ # define SKIPWS(c) while (*(c) && isspace ((unsigned char) *(c))) c++; +#define ISBLANK(c) (c == ' ' || c == '\t') /* * These functions aren't defined in lib.c, but * they are used there. @@ -115,6 +102,8 @@ char *mutt_skip_whitespace (char *); char *mutt_strlower (char *); char *mutt_substrcpy (char *, const char *, const char *, size_t); char *mutt_substrdup (const char *, const char *); +char *safe_strcat (char *, size_t, const char *); +char *safe_strncat (char *, size_t, const char *, size_t); char *safe_strdup (const char *); const char *mutt_stristr (const char *, const char *);