diff options
author | Martin Willi <martin@strongswan.org> | 2008-04-01 14:19:22 +0000 |
---|---|---|
committer | Martin Willi <martin@strongswan.org> | 2008-04-01 14:19:22 +0000 |
commit | 68356ab12cb1058fde78af312bfae3be0398d4d7 (patch) | |
tree | 838cef3a3d7e357389ff4a0e7411425197918abc /scripts/bin2array.c | |
parent | 0ea70ca66ea4770d08733da80f5fe0eaf46122ff (diff) | |
download | strongswan-68356ab12cb1058fde78af312bfae3be0398d4d7.tar.bz2 strongswan-68356ab12cb1058fde78af312bfae3be0398d4d7.tar.xz |
simple converter from binary data to a c array
Diffstat (limited to 'scripts/bin2array.c')
-rw-r--r-- | scripts/bin2array.c | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/scripts/bin2array.c b/scripts/bin2array.c new file mode 100644 index 000000000..015c2bd7d --- /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; + 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,", byte); + } + printf("\n"); + if (end) + { + break; + } + } + printf("};\n"); + return 0; +} + |