mirror of
https://github.com/tmpest127/enc_pic_str
synced 2026-06-08 17:51:05 +00:00
16 lines
266 B
C
16 lines
266 B
C
/*
|
|
* Example 1: Simple printf with stdlib
|
|
*
|
|
* This example demonstrates basic string obfuscation with standard library functions.
|
|
*/
|
|
|
|
#include "pic_str.h"
|
|
#include <stdio.h>
|
|
|
|
int main() {
|
|
// Basic string output
|
|
puts(pic_str("Hello, World!"));
|
|
|
|
return 0;
|
|
}
|