Lines Matching refs:total
107 struct betinfo total;
120 i = read(dbfd, &total, sizeof(total));
123 if (i == 0 || total.hand == 0) {
129 if (total.worth >= 0)
134 printf("|Costs Total |\n");
135 printf("| Hands %8ld |\n", total.hand);
136 printf("| Inspections %8ld |\n", total.inspection);
137 printf("| Games %8ld |\n", total.game);
138 printf("| Runs %8ld |\n", total.runs);
139 printf("| Information %8ld |\n", total.information);
140 printf("| Think time %8ld |\n", total.thinktime);
141 printf("|Total Costs %8ld |\n", total.wins - total.worth);
142 printf("|Winnings %8ld |\n", total.wins);
143 printf("|Net Worth %8ld |\n", total.worth);