pcsc-lite
1.7.4
|
00001 /* 00002 * MUSCLE SmartCard Development ( http://www.linuxnet.com ) 00003 * 00004 * Copyright (C) 2004-2010 00005 * Ludovic Rousseau <ludovic.rousseau@free.fr> 00006 * 00007 * $Id: strlcpycat.h 4974 2010-06-01 09:43:47Z rousseau $ 00008 */ 00009 00015 #ifdef HAVE_STRLCPY 00016 #include <string.h> 00017 #else 00018 size_t strlcpy(char *dst, const char *src, size_t siz); 00019 #endif 00020 00021 #ifndef HAVE_STRLCAT 00022 size_t strlcat(char *dst, const char *src, size_t siz); 00023 #endif 00024