inspircd/include/inspstring.h
brain 968a04f3ec Fixed gentoo (mainly) compatibility -- missing strlcat in this implementation:
gcc version 3.3.5  (Gentoo Linux 3.3.5-r1, ssp-3.3.2-3, pie-8.7.7.1)


git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@908 e03df62e-2008-0410-955e-edbf42e46eb7
2005-03-25 21:06:14 +00:00

13 lines
249 B
C

#ifndef __IN_INSPSTRING_H
#define __IN_INSPSTRING_H
#include "inspircd_config.h"
#include <cstddef>
#ifndef HAS_STRLCPY
size_t strlcpy(char *dst, const char *src, size_t siz);
size_t strlcat(char *dst, const char *src, size_t siz);
#endif
#endif