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