Hi!
Say that I have a script stored in a string like
I am after two C functions to do basic encrypt/encode and decode later on this string, can someone please help?
Say that I have a script stored in a string like
Code:
static char tcl_script[] =
"# example.tk\n"
"# -------------------------------------------------\n"
"# A simple decimal degree to deg,min,sec converter\n"
"# -------------------------------------------------\n"
"# main window\n"
"#\n"
"wm title . \"DMS convert\"\n"
"\n"
...
I am after two C functions to do basic encrypt/encode and decode later on this string, can someone please help?