DEBSOURCES
Skip Quicknav
sources / lief / 0.9.0-1 / examples / python / library_symbols_obfuscation / libadd.c
123456789
#include <stdlib.h> #include <stdio.h> #include "libadd.h" int add(int a, int b) { printf("%d + %d = %d\n", a, b, a+b); return a + b; }