The game of Blackjack implemented in C with a curses interface
- pcg-random, specifically the pcg-c library
- ncurses
Run make all
to build the binary.
- PCG Random Number Generation
- Optimized for small terminals (80 column, 24 lines)
- Thorough card shuffling
- Simple game rules
- Double Down
- Surrender
ASCII art used in the title screen was generated on www.patorjk.com/software/taag/ Using the font 'DOOM' by Frans P. de Vries [email protected], 18 Jun 1996
NCurses, used here to make the text user interface, is currently maintained by Thomas E. Dickey [email protected]
The PCG random number generator was sourced from www.pcg-random.org