linkchecker/linkcheck/HtmlParser/s_util.c
calvin 3eac1be9ab Require and use Python 2.5
Use Python 2.5 features and get rid of old compat code. Also some
code cleanups have been made.


git-svn-id: https://linkchecker.svn.sourceforge.net/svnroot/linkchecker/trunk/linkchecker@3737 e7d03fd6-7b0d-0410-9947-9c21f3af8025
2008-04-27 11:39:21 +00:00

52 lines
1.3 KiB
C

/*
* linux/lib/string.c
*
* Copyright (C) 1991, 1992 Linus Torvalds
*/
#include "Python.h"
#if !defined(HAVE_STRLCPY)
/**
* strlcpy - Copy a %NUL terminated string into a sized buffer
* @dst: Where to copy the string to
* @src: Where to copy the string from
* @size: size of destination buffer
*
* Compatible with *BSD: the result is always a valid
* NUL-terminated string that fits in the buffer (unless,
* of course, the buffer size is zero). It does not pad
* out the result like strncpy() does.
*/
size_t strlcpy (char *dst, const char *src, size_t size)
{
size_t ret = strlen(src);
if (size > 0) {
size_t len = (ret >= size) ? size-1 : ret;
Py_MEMCPY(dst, src, len);
dst[len] = '\0';
}
return ret;
}
#endif /* !HAVE_STRLCPY */
#if !defined(HAVE_STRLCAT)
/**
* strlcat - Append a length-limited, %NUL-terminated string to another
* @dst: The string to be appended to
* @src: The string to append to it
* @size: The size of the destination buffer.
*/
size_t strlcat (char *dst, const char *src, size_t size)
{
size_t dsize = strlen(dst);
size_t len = strlen(src);
size_t res = dsize + len;
dst += dsize;
size -= dsize;
if (len >= size)
len = size-1;
Py_MEMCPY(dst, src, len);
dst[len] = '\0';
return res;
}
#endif /* !HAVE_STRLCAT */