This website requires JavaScript.
Explore
Help
Register
Sign In
upstream
/
opnsense-src
Watch
1
Star
0
Fork
You've already forked opnsense-src
0
mirror of
https://github.com/opnsense/src.git
synced
2026-02-19 02:30:08 -05:00
Code
Issues
Projects
Releases
Packages
Wiki
Activity
Actions
6318052d9e
opnsense-src
/
usr.bin
/
file2c
/
Makefile
6 lines
59 B
Makefile
Raw
Normal View
History
Unescape
Escape
$Id$ -> $FreeBSD$
1999-08-27 21:08:13 -04:00
# $FreeBSD$
This is a small little program used to execute a bad practice a clean way :-) It will read a file on stdin and write it as decimal integers on stdout, this is useful for embedding files in c-sources. There are a few places where this is needed, and this is a better way than the current practice of hand-editing the sources. The command: date | file2c 'const char date[] = {' ',0};' will produce: const char date[] = { 83,97,116,32,74,97,110,32,50,56,32,49,54,58,52,55,58,51,51,32,80,83,84, 32,49,57,57,53,10 ,0}; The manual page is 2 lines longer than the source :-)
1995-01-28 19:49:57 -05:00
PROG
=
file2c
o Add option -n. The -n option takes a count and breaks the line after that many values have been printed. The line length is not considered anymore. o Add option -x. The -x option will cause the byte values to be printed in hexadecimal instead of decimal. o Bump WARNS to 6. o Update the manpage accordingly.
2005-05-15 02:26:59 -04:00
WARNS
?=
6
This is a small little program used to execute a bad practice a clean way :-) It will read a file on stdin and write it as decimal integers on stdout, this is useful for embedding files in c-sources. There are a few places where this is needed, and this is a better way than the current practice of hand-editing the sources. The command: date | file2c 'const char date[] = {' ',0};' will produce: const char date[] = { 83,97,116,32,74,97,110,32,50,56,32,49,54,58,52,55,58,51,51,32,80,83,84, 32,49,57,57,53,10 ,0}; The manual page is 2 lines longer than the source :-)
1995-01-28 19:49:57 -05:00
.
i
n
c
l
u
d
e
<
b
s
d
.
p
r
o
g
.
m
k
>
Reference in a new issue
Copy permalink