]> Joshua Wise's Git repositories - netwatch.git/blobdiff - include/minilib.h
Ref only the head of a pbuf chain, instead of the whole thing, to avoid leaking pbufs.
[netwatch.git] / include / minilib.h
index ef4f302e5e4424f339f0a732262b11d3ef319cbd..d743d5ba28bac90abd3a239d0e6e9d9c3fe6cbf1 100644 (file)
@@ -8,7 +8,9 @@ extern void memset(void *dest, int data, int bytes);
 extern void memmove(void *dest, void *src, int bytes);
 extern int memcmp(const char *a2, const char *a1, int bytes);
 extern int strcmp(const char *a2, const char *a1);
+extern int strncmp(const char *a2, const char *a1, int n);
 extern int strlen(const char *c);
+extern void strcat(char *dest, char *src);
 extern void strcpy(char *a2, const char *a1);
 extern void puts(const char *c);
 extern void tohex(char *s, unsigned long l);
This page took 0.021794 seconds and 4 git commands to generate.