Lines Matching defs:play
125 PLAY *play, /* player structure array ("calloc"ed) */
278 cur_p = play = calloc((size_t)num_play, sizeof (PLAY));
279 if (play == NULL)
290 name_list[i] = play[i].name = strdup(buf);
293 play[i].money = 1500;
308 free(play[i].name);
309 free(play);
327 printf("%s (%d) rolls %d\n", play[i].name, i+1, rl=roll(2, 6));
342 cur_p = &play[max_pl];