b5bf82f8372826b9fa5834cd87122bddd5c24a3f
[apps/madmutt.git] / lib / str.h
1 /*
2  * Copyright notice from original mutt:
3  * Copyright (C) 1996-2000 Michael R. Elkins <me@mutt.org>
4  * Copyright (C) 1999-2000 Thomas Roessler <roessler@does-not-exist.org>
5  *
6  * This file is part of mutt-ng, see http://www.muttng.org/.
7  * It's licensed under the GNU General Public License,
8  * please see the file GPL in the top level source directory.
9  */
10 #ifndef _LIB_STR_H
11 #define _LIB_STR_H
12
13 #include <sys/types.h>
14
15 /*
16  * tools
17  */
18 char *str_tolower (char*);
19 char *str_substrcpy (char*, const char*, const char*, size_t);
20 char *str_substrdup (const char*, const char*);
21 int str_eq (const char*, const char*);
22 const char *str_isstr (const char*, const char*);
23 void str_skip_trailws (char*);
24
25 #endif /* !_LIB_STR_H */