summaryrefslogtreecommitdiff
path: root/src/pnoc.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/pnoc.h')
-rw-r--r--src/pnoc.h17
1 files changed, 0 insertions, 17 deletions
diff --git a/src/pnoc.h b/src/pnoc.h
deleted file mode 100644
index 8ef8606..0000000
--- a/src/pnoc.h
+++ /dev/null
@@ -1,17 +0,0 @@
-#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