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