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.
2 parents 9da3e65 + 19a1d91 commit 591f1daCopy full SHA for 591f1da
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