We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f20fc5b commit 19a1d91Copy full SHA for 19a1d91
libs/utilities.c
@@ -76,7 +76,8 @@ char** new2DArray(int rows, int cols) {
76
77
void sleep(int miliseconds) {
78
clock_t startTime = clock();
79
- while (clock() < (startTime + miliseconds));
+ while (clock() < (startTime + miliseconds))
80
+ ;
81
}
82
83
int strcmpi(const char* str01, const char* str02) {
0 commit comments