mlxsw: spectrum_buffers: Fix pool value handling in mlxsw_sp_sb_tc_pool_bind_set
[linux-2.6/btrfs-unstable.git] / scripts / basic / bin2c.c
blobc3d7eef3ad0619806e8b7069e097ca20406b56d8
1 /*
2 * Unloved program to convert a binary on stdin to a C include on stdout
4 * Jan 1999 Matt Mackall <mpm@selenic.com>
6 * This software may be used and distributed according to the terms
7 * of the GNU General Public License, incorporated herein by reference.
8 */
10 #include <stdio.h>
12 int main(int argc, char *argv[])
14 int ch, total = 0;
16 if (argc > 1)
17 printf("const char %s[] %s=\n",
18 argv[1], argc > 2 ? argv[2] : "");
20 do {
21 printf("\t\"");
22 while ((ch = getchar()) != EOF) {
23 total++;
24 printf("\\x%02x", ch);
25 if (total % 16 == 0)
26 break;
28 printf("\"\n");
29 } while (ch != EOF);
31 if (argc > 1)
32 printf("\t;\n\n#include <linux/types.h>\n\nconst size_t %s_size = %d;\n",
33 argv[1], total);
35 return 0;