2007-09-07 Joel Sherrill <joel.sherrill@OARcorp.com>

* bin2c.c: Update comments.
This commit is contained in:
Joel Sherrill
2007-09-07 13:08:01 +00:00
parent 90a5d194a2
commit f6e2e97b59
2 changed files with 12 additions and 4 deletions

View File

@@ -1,3 +1,7 @@
2007-09-07 Joel Sherrill <joel.sherrill@OARcorp.com>
* bin2c.c: Update comments.
2007-09-04 Joel Sherrill <joel.sherrill@oarcorp.com>
* bin2c.c: Significant improvements -- add multiple options, generate

View File

@@ -1,22 +1,26 @@
/*
* bin2c.c
*
* convert a binary file into a C source vector
* convert a binary file into a C source array.
*
* put into the public domain by Sandro Sigala
* Origin:
* put into the public domain by Sandro Sigala
* http://www.wxwidgets.org/wiki/index.php/Embedding_PNG_Images-Bin2c_In_C
*
* Subsequently modified by Joel Sherrill <joel.sherrill@oarcorp.com>
* to add a number of capabilities not in the original.
*
* syntax: bin2c [-c] [-z] <input_file> <output_file>
*
* -c do NOT add the "const" keyword to definition
* -s add the "static" keywork to definition
* -v verbose
* -z terminate the array with a zero (useful for embedded C strings)
*
* examples:
* bin2c -c myimage.png myimage_png.cpp
* bin2c -z sometext.txt sometext_txt.cpp
*
* From:
* http://www.wxwidgets.org/wiki/index.php/Embedding_PNG_Images-Bin2c_In_C
*/
#include <ctype.h>