Skip to content

Commit 23b5829

Browse files
committed
NEW CHANGES:
- I DELETED THE EMPTY FILE - I COULDNT FIND THE FILE THAT IS NOT FOLLOWING THE KEBAB CASES PROTOCOL. PLS SHOW TO ME WHERE IS IT. - I EDITED SOME TEXT
1 parent 902b9d4 commit 23b5829

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

libs/Stack/stack.c

Whitespace-only changes.

src/main.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ int main(const int argsLength, char* args[]) {
4242
case 1:
4343
printf("\n> Team %s...", team.name);
4444
printf("\n\n> [Playing Tic-Tac-Toe...]");
45+
// playTicTacToe(config.gamesPerPlayer, config.localFile); needs to be added
4546
break;
4647
case 2:
4748
printf("\n> [Showing ranking...]");

src/play/play.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ int playTicTacToe(const int gamesPerPlayer, char* nameOfTheLocalFile) {
3232

3333
updateLocalFile(&_player, nameOfTheLocalFile);
3434

35-
SendInformationToTheAPI(&_player);
35+
sendInformationToTheAPI(&_player);
3636
// this part of the code may change when we have the API, and how to do it
3737
// Also, im not sure if the function is void or int, so we will have to see it later
3838
}
@@ -68,7 +68,7 @@ void playGame(Player* player) {
6868
// and will update the player points
6969

7070
if (result)
71-
puts("Game Over, your ass has been fucked by the machine ngg ");
71+
puts("Game Over, U've lost, try again");
7272
else
7373
puts("Nice, you won, take care of your family, they may lose too");
7474

@@ -86,6 +86,6 @@ void updateLocalFile(Player* player, char* nameOfTheLocalFile) {
8686
puts("Closing the file");
8787
}
8888

89-
void SendInformationToTheAPI(Player* Player) {
89+
void sendInformationToTheAPI(Player* Player) {
9090
// i dont know what to do here yet
9191
}

0 commit comments

Comments
 (0)