blob: 52b40d881caa79e94f2972ed9daa791b3cdeea4c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef CHECKOUTS_H
#define CHECKOUTS_H
#define NUM_CHECKOUTS 170
extern char *CHECKOUTS[][NUM_CHECKOUTS];
#define NUM_SETUP_SHOTS 191
extern char *SETUP_SHOTS[NUM_SETUP_SHOTS];
int checkouts_suggested(char *buf, int rem, int darts_in_hand);
int checkouts_suggested_3_2(char *buf, int rem);
#endif
|