MCPcopy Create free account
hub / github.com/dds-bridge/dds / print_bin_play

Function print_bin_play

examples/hands.cpp:445–461  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

443
444
445auto print_bin_play(PlayTraceBin * playp, SolvedPlay * solved) -> void
446{
447 printf("Number : %d\n", solved->number);
448
449 printf("Play %2d: %s %d\n",
450 0, "--", solved->tricks[0]);
451
452 for (int i = 1; i < solved->number; i++)
453 {
454 printf("Play %2d: %c%c %d\n",
455 i,
456 card_suit_chars_[playp->suit[i - 1]],
457 card_rank_chars_[playp->rank[i - 1]],
458 solved->tricks[i]);
459 }
460 printf("\n");
461}
462
463
464auto print_pbn_play(PlayTracePBN * playp, SolvedPlay * solved) -> void

Callers 2

mainFunction · 0.85
mainFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected