#include #include #include "eightball.h" extern "C" const char *Magic8Ball() { const int NSIDES = 8; const char* answer[NSIDES] = { "YES", "NO", "MAYBE", "MAYBE NOT", "DEFINITELY", "ASK ME TOMORROW", "PARTLY CLOUDY", "42", }; return answer[rand() % NSIDES]; }