ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/ermyth/include/atheme_string.h
Revision: 1.4
Committed: Sun Sep 16 18:54:42 2007 UTC (16 years, 8 months ago) by pippijn
Content type: text/plain
Branch: MAIN
Changes since 1.3: +9 -4 lines
Log Message:
#defines to enum

File Contents

# Content
1 /**
2 * atheme_string.h: String stuff.
3 *
4 * Copyright © 2007 Pippijn van Steenhoven / The Ermyth Team
5 * Rights to this code are as documented in COPYING.
6 *
7 *
8 * Portions of this file were derived from sources bearing the following license:
9 * Copyright © 2005 Atheme Development Group
10 * Rights to this code are as documented in doc/pod/license.pod.
11 *
12 * $Id: atheme_string.h,v 1.3 2007-07-25 01:05:17 pippijn Exp $
13 */
14
15 #ifndef SVS_STRING_H
16 #define SVS_STRING_H
17
18 #ifndef HAVE_STRLCAT
19 extern size_t strlcat (char *dest, char const *src, size_t count);
20 #endif
21 #ifndef HAVE_STRLCPY
22 extern size_t strlcpy (char *dest, char const *src, size_t count);
23 #endif
24
25 extern char const *strip (char *line);
26
27 #endif