Skip to content

Latest commit

 

History

History
executable file
·
28 lines (19 loc) · 829 Bytes

README.md

File metadata and controls

executable file
·
28 lines (19 loc) · 829 Bytes

Curses Blackjack

The game of Blackjack implemented in C with a curses interface

Dependencies

  • pcg-random, specifically the pcg-c library
  • ncurses

Building

Run make all to build the binary.

Features

  • PCG Random Number Generation
  • Optimized for small terminals (80 column, 24 lines)
  • Thorough card shuffling
  • Simple game rules
    • Double Down
    • Surrender

Attribution

ASCII art used in the title screen was generated on www.patorjk.com/software/taag/ Using the font 'DOOM' by Frans P. de Vries fpv@xymph.iaf.nl, 18 Jun 1996

NCurses, used here to make the text user interface, is currently maintained by Thomas E. Dickey dickey@invisible-island.net

The PCG random number generator was sourced from www.pcg-random.org