I guess I can just put this up. Most of these have been sitting here forever.

This commit is contained in:
Marisa the Magician 2017-09-04 11:24:40 +02:00
commit d2777092d1
26 changed files with 5347 additions and 0 deletions

23
withhands.c Normal file
View file

@ -0,0 +1,23 @@
#include <stdio.h>
const char* asciitab[96] =
{
" ","🖉","","","👓","🕭","🕮","🕯","🕿","","🖂","🖃","📪","📫","📬","📭","🗀",
"🗁","🗎","🗏","🗐","🗄","","🖮","🖰","🖲","🖳","🖴","🖫","🖬","","","🖎","",
"🖏","🖒","🖓","🖘","🖙","🖞","🖟","🖐","","😐","","💣","","","🏱","","",
"🌢","","🕆","","🕈","","","","","","","","","","","","",
"","","","","","","🙰","🙵","","","","","","","","","",
"","","","","","","","","","",""
};
int main( void )
{
int ch;
while ( (ch=getchar()) != EOF )
{
if ( (ch >= 0x20) && (ch < 0x80) )
printf(asciitab[ch-0x20]);
else putchar(ch);
}
return 0;
}