I guess I can just put this up. Most of these have been sitting here forever.
This commit is contained in:
commit
d2777092d1
26 changed files with 5347 additions and 0 deletions
23
withhands.c
Normal file
23
withhands.c
Normal 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;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue