#include //Here we have two basic functions //We'll compile this file into a shared object, to access them in Python int getRandomNumber() { return 4; //Chosen by a fair die roll } char *check_paddlin(char expression[]) { if (!strcmp(expression,"Paddling the school canoe")) return "Ooh, you better believe that's a paddlin'"; return "That's a paddlin'"; }