ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/ermyth/include/atheme_string.h
Revision: 1.3
Committed: Wed Jul 25 01:05:17 2007 UTC (16 years, 10 months ago) by pippijn
Content type: text/plain
Branch: MAIN
Changes since 1.2: +1 -60 lines
Log Message:
- moved to GPL
- added license information to files

File Contents

# User Rev Content
1 pippijn 1.1 /*
2     * Copyright © 2005 Atheme Development Group
3 pippijn 1.2 * Rights to this code are as documented in doc/pod/license.pod.
4 pippijn 1.1 *
5     * String stuff.
6     *
7 pippijn 1.3 * $Id: atheme_string.h,v 1.2 2007-07-21 01:29:07 pippijn Exp $
8 pippijn 1.1 */
9    
10     #ifndef SVS_STRING_H
11     #define SVS_STRING_H
12    
13     #ifndef HAVE_STRLCAT
14     extern size_t strlcat (char *dest, char const *src, size_t count);
15     #endif
16     #ifndef HAVE_STRLCPY
17     extern size_t strlcpy (char *dest, char const *src, size_t count);
18     #endif
19    
20     extern char const *strip (char *line);
21    
22     #endif