pcsc-lite  1.8.8
strlcpycat.h
Go to the documentation of this file.
1 /*
2  * MUSCLE SmartCard Development ( http://www.linuxnet.com )
3  *
4  * Copyright (C) 2004-2010
5  * Ludovic Rousseau <ludovic.rousseau@free.fr>
6  *
7  * $Id: strlcpycat.h 4974 2010-06-01 09:43:47Z rousseau $
8  */
9 
15 #ifdef HAVE_STRLCPY
16 #include <string.h>
17 #else
18 size_t strlcpy(char *dst, const char *src, size_t siz);
19 #endif
20 
21 #ifndef HAVE_STRLCAT
22 size_t strlcat(char *dst, const char *src, size_t siz);
23 #endif
24