cembed

convert files to C char arrays
git clone git://git.rr3.xyz/cembed
Log | Files | Refs | README | LICENSE

commit f047ec8a2630c1e8fe70e6ad0903927c25e53123
parent 16f90fe070d32fa56ba72f69ed285ad60251028c
Author: Robert Russell <robert@rr3.xyz>
Date:   Mon, 11 Nov 2024 20:06:09 -0800

Add man page and README

Diffstat:
AREADME | 13+++++++++++++
Acembed.1 | 8++++++++
2 files changed, 21 insertions(+), 0 deletions(-)

diff --git a/README b/README @@ -0,0 +1,13 @@ +CEMBED(1) User Commands CEMBED(1) + +NAME + cembed - convert files to C char arrays + +SYNOPSIS + cembed name path + +DESCRIPTION + cembed encodes the contents of path as a C char array declaration named + name and prints the result to stdout. + +cembed 2024-11-11 CEMBED(1) diff --git a/cembed.1 b/cembed.1 @@ -0,0 +1,8 @@ +.TH "CEMBED" "1" "2024-11-11" "cembed" "User Commands" +.SH NAME +cembed \- convert files to C char arrays +.SH SYNOPSIS +\fBcembed\fR \fIname\fR \fIpath\fR +.SH DESCRIPTION +\fBcembed\fR encodes the contents of \fIpath\fR as a C char array declaration +named \fIname\fR and prints the result to stdout.