Codebase list mk-configure / debian/0.29.1-1 features / mkc_strlcpy.h
debian/0.29.1-1

Tree @debian/0.29.1-1 (Download .tar.gz)

mkc_strlcpy.h @debian/0.29.1-1raw · history · blame

/********************************************************************\
 Copyright (c) 2014 by Aleksey Cheusov

 See LICENSE file in the distribution.
\********************************************************************/

#ifndef _MKC_STRLCPY_H_
#define _MKC_STRLCPY_H_

#include <string.h>

#if !HAVE_FUNC3_STRLCPY_STRING_H
size_t strlcpy(char *dst, const char *src, size_t size);
#endif

#endif // _MKC_STRLCPY_H_