Files
tmpest127-enc_pic_str/examples/05-non-obfuscated/main.c
T
2026-01-29 14:33:44 +04:00

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;
}