summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHiltjo Posthuma <hiltjo@codemadness.org>2015-01-02 14:35:53 +0100
committerHiltjo Posthuma <hiltjo@codemadness.org>2015-01-02 14:35:53 +0100
commit8b4664f694eee80e78903605e21fee770ba7cedf (patch)
treefb1cf1c6b60b3681a5c87517fa03bc25ff4792bb
parentdd0baa3e7b32fb66f2f8c1fa8cb41cae3f4feca4 (diff)
compat: separate compat stuff, strlcpy atm
-rw-r--r--util.c30
-rw-r--r--util.h7
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 <time.h>
#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);