summaryrefslogtreecommitdiff
path: root/scripts/bin2array.c
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/bin2array.c')
-rw-r--r--scripts/bin2array.c34
1 files changed, 34 insertions, 0 deletions
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 <stdio.h>
+
+/**
+ * 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;
+}
+