]> Joshua Wise's Git repositories - netwatch.git/blobdiff - include/minilib.h
Apply patches from jdpotter@google.com, as submitted to NetWatch Maintainer Team...
[netwatch.git] / include / minilib.h
index 2e7eca66831b8c3b0c1a1dc8d123c4c95df1573a..d5afd2b3cd024f189928554346a51d2da46077bf 100644 (file)
@@ -15,6 +15,7 @@
 
 extern void memcpy(void *dest, const void *src, int bytes);
 extern void memset(void *dest, int data, int bytes);
+extern void *memchr(const void *buf, char c, int maxlen);
 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);
@@ -24,6 +25,7 @@ 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);
+extern void btohex(char *s, unsigned char c);
 extern void puthex(unsigned long l);
 extern int vsprintf(char *s, const char *fmt, va_list args);
 extern int vsnprintf(char *s, int size, const char *fmt, va_list args);
This page took 0.022455 seconds and 4 git commands to generate.