#ifndef _sleep_h_ #define _sleep_h_ #include #include void sleep(char* time){ char cmd[1000]; strcpy(cmd, "sleep "); strcat(cmd, time); system(cmd); } #endif // _sleep_h_