aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <zecke@selfish.org>2009-11-21 19:41:06 +0100
committerHolger Hans Peter Freyther <zecke@selfish.org>2009-11-22 05:28:14 +0100
commita8816dd9c76627ea2f99f7405e4f44b008f1401a (patch)
treed22bc1bda5986e607132b62fb6540e69ae818d39
parent7466351026f09364aa9b92ae921e564519bb115e (diff)
[talloc] Provide a copy of strnlen on OSX
The implementation is taken from a blogspot and I don't think it is copyrightable...
-rw-r--r--openbsc/src/talloc.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/openbsc/src/talloc.c b/openbsc/src/talloc.c
index bd5e1b0e0..d8213238e 100644
--- a/openbsc/src/talloc.c
+++ b/openbsc/src/talloc.c
@@ -105,6 +105,15 @@
#endif
#endif
+#ifdef __APPLE__
+/* taken from http://insanecoding.blogspot.com/2007/03/methods-for-safe-string-handling.html */
+size_t strnlen(const char *s, size_t n)
+{
+ const char *p = (const char *)memchr(s, 0, n);
+ return(p ? p-s : n);
+}
+#endif
+
/* this null_context is only used if talloc_enable_leak_report() or
talloc_enable_leak_report_full() is called, otherwise it remains
NULL