|
/* [ʞ] ord.c - integer converter
* ~ lexi hale <lexi@hale.su>
* © AGPLv3
* * ord has no dependencies except for libc.
* ? ord converts integers to ascii characters
* and back. written because the only fucking
* way to do this in shell is FUCKING PRINTF.
* $ cc ord.c -o ord [-D_(POSIX|LIBC)_IO]
* - the flag D_IO will instruct ord.c whether
* to use POSIX io primitives (write and read)
|
|
|
/* [ʞ] ord.c - integer converter
* ~ lexi hale <lexi@hale.su>
* © EUPL v1.2
* * ord has no dependencies except for libc.
* ? ord converts integers to ascii characters
* and back. written because the only fucking
* way to do this in shell is FUCKING PRINTF.
* $ cc ord.c -o ord [-D_(POSIX|LIBC)_IO]
* - the flag D_IO will instruct ord.c whether
* to use POSIX io primitives (write and read)
|