Displaying 1 result from an estimated 1 matches for "f37bdd9".
2009 Dec 10
1
[PATCH] [RFC] lib: add a hex dump lib function
...---
com32/include/stdio.h | 2 ++
com32/lib/Makefile | 2 +-
com32/lib/hexdump.c | 42 ++++++++++++++++++++++++++++++++++++++++++
3 files changed, 45 insertions(+), 1 deletions(-)
create mode 100644 com32/lib/hexdump.c
diff --git a/com32/include/stdio.h b/com32/include/stdio.h
index f37bdd9..731ebe8 100644
--- a/com32/include/stdio.h
+++ b/com32/include/stdio.h
@@ -114,4 +114,6 @@ __extern void perror(const char *);
__extern int rename(const char *, const char *);
+__extern void hexdump(const void *, int, int);
+
#endif /* _STDIO_H */
diff --git a/com32/lib/Makefile b/com32/lib/Ma...