summaryrefslogtreecommitdiffstats
path: root/tools/build/rtems-bin2c.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2007-09-07 13:08:01 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2007-09-07 13:08:01 +0000
commitf6e2e97b59ac58a4370e7e0d98408063321d7343 (patch)
tree61539f74d0216df0bfe7c2597567d7c6ce11397e /tools/build/rtems-bin2c.c
parent2007-09-06 Joel Sherrill <joel.sherrill@oarcorp.com> (diff)
downloadrtems-f6e2e97b59ac58a4370e7e0d98408063321d7343.tar.bz2
2007-09-07 Joel Sherrill <joel.sherrill@OARcorp.com>
* bin2c.c: Update comments.
Diffstat (limited to 'tools/build/rtems-bin2c.c')
-rw-r--r--tools/build/rtems-bin2c.c12
1 files changed, 8 insertions, 4 deletions
diff --git a/tools/build/rtems-bin2c.c b/tools/build/rtems-bin2c.c
index 53d25eb458..a489552f41 100644
--- a/tools/build/rtems-bin2c.c
+++ b/tools/build/rtems-bin2c.c
@@ -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>