| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
|
|
| |
Approved by: re (kensmith)
Notes:
svn path=/stable/7/; revision=173612
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
little more style(9) friendly output. For example:
%file2c -n 8 -s -x 'const char data[] = {' '};' < /etc/motd
const char data[] = {
0x46, 0x72, 0x65, 0x65, 0x42, 0x53, 0x44, 0x20,
0x37, 0x2e, 0x30, 0x2d, 0x43, 0x55, 0x52, 0x52,
0x45, 0x4e, 0x54, 0x20, 0x28, 0x42, 0x45, 0x41,
0x53, 0x54, 0x49, 0x45, 0x29, 0x20, 0x23, 0x30,
0x3a, 0x20, 0x57, 0x65, 0x64, 0x20, 0x4d, 0x61,
0x72, 0x20, 0x32, 0x31, 0x20, 0x31, 0x39, 0x3a,
0x30, 0x34, 0x3a, 0x33, 0x36, 0x20, 0x45, 0x44,
0x54, 0x20, 0x32, 0x30, 0x30, 0x37, 0x0a
};
Notes:
svn path=/head/; revision=167823
|
| |
|
|
|
|
|
|
|
|
|
| |
that have at least 3 characters.
MFC after: 1 week
Thanks to: Music band ``Chingon''
for keeping me company while searching for these.
Notes:
svn path=/head/; revision=148580
|
| |
|
|
|
|
|
|
|
|
|
|
| |
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.
Notes:
svn path=/head/; revision=146231
|
| |
|
|
| |
Notes:
svn path=/head/; revision=146225
|
| |
|
|
| |
Notes:
svn path=/head/; revision=99112
|
| |
|
|
| |
Notes:
svn path=/head/; revision=93150
|
| |
|
|
|
|
|
| |
help the GCC3 transition and CURRENT in general.
Notes:
svn path=/head/; revision=90415
|
| |
|
|
| |
Notes:
svn path=/head/; revision=81588
|
| |
|
|
| |
Notes:
svn path=/head/; revision=79755
|
| |
|
|
|
|
|
|
|
| |
where necessary.
Submitted by: Mike Barcroft <mike@q9media.com>
Notes:
svn path=/head/; revision=79011
|
| |
|
|
| |
Notes:
svn path=/head/; revision=74848
|
| |
|
|
| |
Notes:
svn path=/head/; revision=68854
|
| |
|
|
| |
Notes:
svn path=/head/; revision=62979
|
| |
|
|
| |
Notes:
svn path=/head/; revision=50477
|
| |
|
|
|
|
|
| |
Approved By: phk
Notes:
svn path=/head/; revision=48478
|
| |
|
|
| |
Notes:
svn path=/head/; revision=27168
|
| |
|
|
|
|
|
| |
the revision date is displayed correctly.
Notes:
svn path=/head/; revision=26827
|
| |
|
|
| |
Notes:
svn path=/head/; revision=23012
|
| |
|
|
|
|
|
|
|
|
|
| |
This will make a number of things easier in the future, as well as (finally!)
avoiding the Id-smashing problem which has plagued developers for so long.
Boy, I'm glad we're not using sup anymore. This update would have been
insane otherwise.
Notes:
svn path=/head/; revision=21673
|
|
|
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 :-)
Notes:
svn path=/head/; revision=5996
|