search for: 04edbcf

Displaying 1 result from an estimated 1 matches for "04edbcf".

Did you mean: 04ed0bc
2009 Dec 10
1
[PATCH] [RFC] lib: add a hex dump lib function
...printf.o vsprintf.o \ asprintf.o vasprintf.o strlcpy.o strlcat.o \ - vsscanf.o zalloc.o \ + vsscanf.o zalloc.o hexdump.o \ \ opendir.o readdir.o closedir.o getcwd.o chdir.o fdopendir.o \ \ diff --git a/com32/lib/hexdump.c b/com32/lib/hexdump.c new file mode 100644 index 0000000..04edbcf --- /dev/null +++ b/com32/lib/hexdump.c @@ -0,0 +1,42 @@ +/* + * The hex dump lib. + * + * Copyright (C) 2009 Liu Aleaxander -- All rights reserved. This file + * may be redistributed under the terms of the GNU Public License. + */ + +#include <stdio.h> +#include <stdint.h> +#include &l...