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 5572947 + 87949cf commit 223a483Copy full SHA for 223a483
libs/utilities.c
@@ -75,7 +75,8 @@ char** new2DArray(const int rows, const int cols) {
75
76
void sleep(int miliseconds) {
77
const clock_t startTime = clock();
78
- while (clock() < (startTime + miliseconds));
+ while (clock() < (startTime + miliseconds))
79
+ ;
80
}
81
82
int strcmpi(const char* str01, const char* str02) {
0 commit comments