Skip to content

Commit 76757cf

Browse files
committed
minor
1 parent 70a5d3f commit 76757cf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tictactoe.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88

99
#include "tictactoe.h"
1010
#include "high_score.h"
11+
#include "helper.h"
1112

1213
//TODO make sure each game has their own board, client_fd etc
1314
//this is just a visualization of what it'd look like for each player
@@ -56,7 +57,6 @@ bool handle_read_board(int client_fd, char* client_str) {
5657

5758

5859

59-
6060
bool handle_get_winner(int client_fd) {
6161
//implement a more effecient check if needed
6262

@@ -80,7 +80,7 @@ bool handle_get_winner(int client_fd) {
8080

8181
//send winner to db stub code
8282
add_winner(client_fd, winner);
83-
83+
8484
return 0;//what to return for status?
8585

8686
}

0 commit comments

Comments
 (0)