ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/ermyth/include/atheme_string.h
Revision: 1.5
Committed: Sat Sep 22 14:27:26 2007 UTC (16 years, 7 months ago) by pippijn
Content type: text/plain
Branch: MAIN
CVS Tags: HEAD
Changes since 1.4: +1 -1 lines
State: FILE REMOVED
Log Message:
split up ermyth into ermyth-modules, libermyth (currently just ermyth-util) and ermyth-core

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.4 2007-09-16 18:54:42 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