| 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 |