mirror of
https://github.com/tmpest127/enc_pic_str
synced 2026-06-08 17:51:05 +00:00
19 lines
509 B
C
19 lines
509 B
C
/*
|
|
* Example 5: Non-obfuscated code (header passthrough)
|
|
*
|
|
* This example demonstrates that the header is non-invasive.
|
|
* The code compiles and runs WITHOUT obfuscation because
|
|
* pic_str() simply passes strings through when not obfuscated.
|
|
*/
|
|
|
|
#include "pic_str.h"
|
|
#include <stdio.h>
|
|
|
|
int main() {
|
|
printf("%s\n", pic_str("This is NOT obfuscated!"));
|
|
printf("%s\n", pic_str("The header just passes strings through."));
|
|
printf("%s\n", pic_str("No obfuscator needed - still works!"));
|
|
|
|
return 0;
|
|
}
|