| 335 | |
| 336 | |
| 337 | auto compare_table(DdTableResults * table, int handno) -> bool |
| 338 | { |
| 339 | for (int suit = 0; suit < DDS_STRAINS; suit++) |
| 340 | { |
| 341 | for (int pl = 0; pl <= 3; pl++) |
| 342 | { |
| 343 | if (table->res_table[suit][pl] != dd_table_[handno][4 * suit + pl]) |
| 344 | return false; |
| 345 | } |
| 346 | } |
| 347 | return true; |
| 348 | } |
| 349 | |
| 350 | |
| 351 | auto print_table(DdTableResults * table) -> void |