pauwell / obfuscated-text

:bowtie: My attempt in obfuscating a small C program that gets some text as input and prints it in 'ascii-art'.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

obfuscated-text

Converts a string of characters into ascii-art.

    ~ String to art ~
    - Paul Bernitz -
	  2016

Font-storage:

const unsigned char letter_a[5] = { 0xF9F99 };

"A"	Binary	Hex
****	1111    0xF
*  *  	1001  	0x9
**** 	1111  	0xF
*  *  	1001  	0x9
*  *  	1001  	0x9

Compiled with: gcc version 4.4.1 mingw32

gcc -o C:/CCode/out C:/CCode/main.c

start C:/CCode/out.exe "Hello World" "C:/CCode/output.txt"

About

:bowtie: My attempt in obfuscating a small C program that gets some text as input and prints it in 'ascii-art'.

License:GNU General Public License v3.0


Languages

Language:C 100.0%