// // File: print.c // print.c handles printing of pre-game strings // @author Josh Bicking // // // // // // // // // // // // // // // // // // // // // // // #define _BSD_SOURCE /* for unistd.h */ #ifdef _WIN32 # include # include # define SLEEP(delay) Sleep(delay/1000) #else # include # include # define SLEEP(delay) usleep(delay) #endif #include #include #include #include "print.h" #include "pass.h" void slowPrint(char arr[], int line){ for(int i=0; (unsigned long)i