00001 /* 00002 * MUSCLE SmartCard Development ( http://www.linuxnet.com ) 00003 * 00004 * Copyright (C) 2004 00005 * Ludovic Rousseau <ludovic.rousseau@free.fr> 00006 * 00007 * $Id: strlcpycat.h 1421 2005-04-12 12:09:21Z rousseau $ 00008 */ 00009 00015 #ifndef HAVE_STRLCPY 00016 size_t strlcpy(char *dst, const char *src, size_t siz); 00017 #endif 00018 00019 #ifndef HAVE_STRLCAT 00020 size_t strlcat(char *dst, const char *src, size_t siz); 00021 #endif 00022