00001 /* 00002 * Copyright (c) 2005-2012 by KoanLogic s.r.l. - All rights reserved. 00003 */ 00004 #ifndef _LIBU_STRLCAT_H_ 00005 #define _LIBU_STRLCAT_H_ 00006 00007 #include <u/libu_conf.h> 00008 #include <sys/types.h> 00009 #include <string.h> 00010 00011 #ifdef HAVE_STRLCAT 00012 #include <string.h> 00013 #else /* !HAVE_STRLCAT */ 00014 00015 #ifdef __cplusplus 00016 extern "C" { 00017 #endif /* __cplusplus */ 00018 00019 size_t strlcat(char *dst, const char *src, size_t siz); 00020 00021 #ifdef __cplusplus 00022 } 00023 #endif /* __cplusplus */ 00024 00025 #endif /* HAVE_STRLCAT */ 00026 00027 #endif /* !_LIBU_STRLCAT_H_ */