#include "rondoudou_patch2.h" void f() { cipher; print_log("Dans f\n"); decipher; } void g(int a) { cipher; print_log("Dans g(%d)\n", a); decipher; } int h(int a) { cipher; print_log("Dans h(%d)\n", a); change_key(1516531); decipher; return 5; } int main() { cipher; print_log("Appel de f\n"); f(); print_log("Appel de g(3)\n"); g(3); print_log("Appel de f(6)\n"); h(6); decipher; return 0; }