0f9a686b44629cfbf22989ed525271935ffef961
[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 void str_adjust (char**);
22 int str_eq (const char*, const char*);
23 const char *str_isstr (const char*, const char*);
24 void str_skip_trailws (char*);
25
26 #endif /* !_LIB_STR_H */