Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
…ork-2024 into develop
  • Loading branch information
hozlucas28 committed Sep 21, 2024
2 parents 9da3e65 + 19a1d91 commit 591f1da
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion libs/utilities.c
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,8 @@ char** new2DArray(int rows, int cols) {

void sleep(int miliseconds) {
clock_t startTime = clock();
while (clock() < (startTime + miliseconds));
while (clock() < (startTime + miliseconds))
;
}

int strcmpi(const char* str01, const char* str02) {
Expand Down

0 comments on commit 591f1da

Please sign in to comment.