From 8b4664f694eee80e78903605e21fee770ba7cedf Mon Sep 17 00:00:00 2001 From: Hiltjo Posthuma Date: Fri, 2 Jan 2015 14:35:53 +0100 Subject: compat: separate compat stuff, strlcpy atm --- util.c | 30 ------------------------------ util.h | 7 ++++--- 2 files changed, 4 insertions(+), 33 deletions(-) diff --git a/util.c b/util.c index a993bd6..085304e 100644 --- a/util.c +++ b/util.c @@ -8,36 +8,6 @@ #include "util.h" -/* - * Taken from OpenBSD. - * Copy src to string dst of size siz. At most siz-1 characters - * will be copied. Always NUL terminates (unless siz == 0). - * Returns strlen(src); if retval >= siz, truncation occurred. - */ -size_t -strlcpy(char *dst, const char *src, size_t siz) -{ - char *d = dst; - const char *s = src; - size_t n = siz; - - /* copy as many bytes as will fit */ - if (n != 0) { - while (--n != 0) { - if ((*d++ = *s++) == '\0') - break; - } - } - /* not enough room in dst, add NUL and traverse rest of src */ - if (n == 0) { - if (siz != 0) - *d = '\0'; /* NUL-terminate dst */ - while (*s++) - ; - } - return(s - src - 1); /* count does not include NUL */ -} - /* print link; if link is relative use baseurl to make it absolute */ void printlink(const char *link, const char *baseurl, FILE *fp) diff --git a/util.h b/util.h index 429d0a5..67b2f2a 100644 --- a/util.h +++ b/util.h @@ -1,3 +1,7 @@ +#ifdef COMPAT +#include "compat.h" +#endif + #include #define ISUTF8(c) (((c) & 0xc0) != 0x80) @@ -16,9 +20,6 @@ enum { FieldUnixTimestamp = 0, FieldTimeFormatted, FieldTitle, FieldLink, FieldContent, FieldContentType, FieldId, FieldAuthor, FieldFeedType, FieldFeedName, FieldFeedUrl, FieldBaseSiteUrl, FieldLast }; -#undef strlcpy -size_t strlcpy(char *, const char *, size_t); - void feedsfree(struct feed *f); unsigned int parseline(char **line, size_t *size, char **fields, unsigned int maxfields, int separator, FILE *fp); -- cgit v1.2.3