Elaborate on description and CC0 waiver in cabi.c

Also renamed file LICENSE to COPYING as recommended for CC0
This commit is contained in:
Scott Allen 2020-07-01 16:51:49 -04:00
parent 966c2125f1
commit 568a15ff87
2 changed files with 19 additions and 6 deletions

View File

@ -1,12 +1,25 @@
/* /*
abe.c cabi - Compress Arduboy Image
arduboy encoder A command line program to read a PNG file containing a bitmap image, compress
monochrome rle encoding by zep it using RLE encoding and convert it to C/C++ code suitable for use with the
License: CC-0 Team A.R.G. drawCompressed() function. This function is included in the
Arduboy2 library.
cabi in.png [array_name_prefix] Written by zep
https://www.lexaloffle.com/bbs/?uid=1
https://twitter.com/lexaloffle
Contributed to Team A.R.G.
To the extent possible under law, the author(s) have dedicated all copyright
and related and neighboring rights to this software to the public domain
worldwide. This software is distributed without any warranty.
You should have received a copy of the CC0 Public Domain Dedication along with
this software. If not, see <http://creativecommons.org/publicdomain/zero/1.0/>.
Usage:
cabi in.png [array_name_prefix]
*/ */
#include <stdlib.h> #include <stdlib.h>