blob: 8ef860660e30f62e623d9d6e6b376fd027ec70ff (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#ifndef OXEN_PNOC_H
#define OXEN_PNOC_H
#include "card.h"
#define MAX_PLAYER_NAME_LENGTH 10
typedef struct
{
uint8_t player_id;
char player_name[MAX_PLAYER_NAME_LENGTH+1]; // Player name length + 1 for string termination
card open_card;
} pnoc_t;
void pnoc_sort(pnoc_t pnoc[], const uint8_t num_tuples);
#endif // OXEN_PNOC_H
|