[Pcsclite-cvs-commit] CVS PCSC/src

CVS User rousseau ludovic.rousseau@free.fr
Tue, 07 Sep 2004 02:35:05 -0600


Update of /cvsroot/pcsclite/PCSC/src
In directory haydn:/tmp/cvs-serv12654

Added Files:
	strlcpycat.h 
Log Message:
prototypes of strlcpy/strlcat



--- /cvsroot/pcsclite/PCSC/src/strlcpycat.h	2004/09/07 08:35:00	NONE
+++ /cvsroot/pcsclite/PCSC/src/strlcpycat.h	2004/09/07 08:35:00	1.1
/*
 * prototypes of strlcpy()/strlcat() imported from OpenBSD
 *
 * MUSCLE SmartCard Development ( http://www.linuxnet.com )
 *
 * Copyright (C) 2004
 *  Ludovic Rousseau <ludovic.rousseau@free.fr>
 *
 * $Id: strlcpycat.h,v 1.1 2004/09/07 08:35:00 rousseau Exp $
 */

#ifndef HAVE_STRLCPY
size_t strlcpy(char *dst, const char *src, size_t siz);
#endif

#ifndef HAVE_STRLCAT
size_t strlcat(char *dst, const char *src, size_t siz);
#endif