libpoker-eval

C library to evaluate and compare poker hands quickly.

brewmacoslinux
Try with needOr install directly
Source

About

C library to evaluate poker hands

Examples

evaluate poker hand strength in C code$ gcc -o poker_eval main.c -lpoker-eval
link poker hand evaluation library to project$ pkg-config --cflags --libs libpoker-eval
check poker eval library version installed$ pkg-config --modversion libpoker-eval
find poker eval header files location$ pkg-config --variable=includedir libpoker-eval
compile program using poker hand evaluator$ gcc -o hand_ranker hand_ranker.c $(pkg-config --cflags --libs libpoker-eval)