mirror of
https://github.com/inspircd/inspircd.git
synced 2025-03-10 02:59:01 -04:00
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
13 lines
249 B
C
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
|