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

https://github.com/8dcc/blackjack

Blackjack made in C with ncurses version
https://github.com/8dcc/blackjack

blackjack cli ncurses

Last synced: about 19 hours ago
JSON representation

Blackjack made in C with ncurses version

Awesome Lists containing this project

README

          

# Blackjack
**Simple CLI blackjack made in C.**

### Building from source
Using make:
```bash
# For the generic version
make
./blackjack.out

# For the ncurses version (linux)
make ncurses
./blackjack_ncurses.out
```

### Screenshots
*Note: Some screenshots might be a bit outdated.*

Normal mode with color.

![screenshot-1](https://user-images.githubusercontent.com/29655971/184501150-83516d85-0614-4362-b415-135e7c68045b.png)

Using ncurses (no color for now). Player values and cards get updated on the same place.

![screenshot-2](https://user-images.githubusercontent.com/29655971/187574171-467c68a8-7411-451f-8ee6-3319fd24e63f.png)