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: 11 months ago
JSON representation
Simple Tic Tac Toe game between two players(clients) connected to a server.
- Host: GitHub
- URL: https://github.com/aggstam/tic_tac_toe
- Owner: aggstam
- License: apache-2.0
- Created: 2018-06-28T17:13:25.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2023-05-16T13:29:55.000Z (about 3 years ago)
- Last Synced: 2025-03-02T08:24:38.394Z (over 1 year ago)
- Topics: c, network-game, tic-tac-toe
- Language: C
- Homepage:
- Size: 51.8 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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!