An open API service indexing awesome lists of open source software.

https://github.com/aggstam/tic_tac_toe

Simple Tic Tac Toe game between two players(clients) connected to a server.
https://github.com/aggstam/tic_tac_toe

c network-game tic-tac-toe

Last synced: about 1 month ago
JSON representation

Simple Tic Tac Toe game between two players(clients) connected to a server.

Awesome Lists containing this project

README

          

# tic_tac_toe
Simple Tic Tac Toe game between two players(clients) connected to a server,
using Douglas E. Comer's **[CNAI](https://netbook.cs.purdue.edu)** Socket API.

## Usage
### Compilation
```
% make
```

### Execution
First we start the server:
```
% ./server
```
On different terminals, we start two clients:
```
% ./client
```
Enjoy the game!