/** * atheme_string.h: String stuff. * * Copyright © 2007 Pippijn van Steenhoven / The Ermyth Team * Rights to this code are as documented in COPYING. * * * Portions of this file were derived from sources bearing the following license: * Copyright © 2005 Atheme Development Group * Rights to this code are as documented in doc/pod/license.pod. * * $Id: atheme_string.h,v 1.5 2007/09/22 14:27:26 pippijn dead $ */ #ifndef SVS_STRING_H #define SVS_STRING_H #ifndef HAVE_STRLCAT extern size_t strlcat (char *dest, char const *src, size_t count); #endif #ifndef HAVE_STRLCPY extern size_t strlcpy (char *dest, char const *src, size_t count); #endif extern char const *strip (char *line); #endif