]> git.ipfire.org Git - thirdparty/bird.git/blobdiff - lib/string.h
Filter test: typo fix
[thirdparty/bird.git] / lib / string.h
index 218f7b1cf44af26c491a4e13f873b0190d397a0e..75cb88ddc82e0c1dddbc579c8adc06dc2b25bf37 100644 (file)
@@ -24,4 +24,31 @@ void buffer_puts(buffer *buf, const char *str);
 
 int patmatch(const byte *pat, const byte *str);
 
+static inline char *xbasename(const char *str)
+{
+  char *s = strrchr(str, '/');
+  return s ? s+1 : (char *) str;
+}
+
+static inline char *
+xstrdup(const char *c)
+{
+  size_t l = strlen(c) + 1;
+  char *z = xmalloc(l);
+  memcpy(z, c, l);
+  return z;
+}
+
+static inline void
+memset32(void *D, u32 val, uint n)
+{
+  u32 *dst = D;
+  uint i;
+
+  for (i = 0; i < n; i++)
+    dst[i] = val;
+}
+
+#define ROUTER_ID_64_LENGTH 23
+
 #endif