From 74f0bbfc53cb5fa519e4e27ece53735ab51b397c Mon Sep 17 00:00:00 2001 From: Rene Mayrhofer Date: Wed, 29 Oct 2008 20:30:44 +0000 Subject: - New upstream release. --- scripts/bin2array.c | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 scripts/bin2array.c (limited to 'scripts/bin2array.c') diff --git a/scripts/bin2array.c b/scripts/bin2array.c new file mode 100644 index 000000000..4778b446a --- /dev/null +++ b/scripts/bin2array.c @@ -0,0 +1,34 @@ + +#include + +/** + * convert standard input to binary data to a c array + */ +int main(int argc, char *argv[]) +{ + int i, end = 0; + unsigned char byte; + + printf("char %s[] = {\n", argc > 1 ? argv[1] : "data"); + while (1) + { + printf(" "); + for (i = 0; i < 16; i++) + { + if (fread(&byte, 1, 1, stdin) != 1) + { + end = 1; + break; + } + printf("0x%02x,", (unsigned int)byte); + } + printf("\n"); + if (end) + { + break; + } + } + printf("};\n"); + return 0; +} + -- cgit v1.2.3