| 1 |
pippijn |
1.4 |
/** |
| 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 |
pippijn |
1.1 |
* Copyright © 2005 Atheme Development Group |
| 10 |
pippijn |
1.2 |
* Rights to this code are as documented in doc/pod/license.pod. |
| 11 |
pippijn |
1.1 |
* |
| 12 |
pippijn |
1.4 |
* $Id: atheme_string.h,v 1.3 2007-07-25 01:05:17 pippijn Exp $ |
| 13 |
pippijn |
1.1 |
*/ |
| 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 |