diff options
| author | tslil clingman <tslil@posteo.de> | 2021-02-02 19:23:54 -0500 |
|---|---|---|
| committer | tslil <tslil@posteo.de> | 2026-08-28 19:37:41 +0100 |
| commit | 40c6b1dafab4de169bac8a799e7953e85061218e (patch) | |
| tree | 99d86e8f90e8aa19b35875ea8ba624c50c467857 /src/pptdb.c | |
| parent | 11956b2e940f5e1839efab187d898092e819a766 (diff) | |
TEI interface working!
Diffstat (limited to 'src/pptdb.c')
| -rw-r--r-- | src/pptdb.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/pptdb.c b/src/pptdb.c index e3fd687..bb94987 100644 --- a/src/pptdb.c +++ b/src/pptdb.c @@ -75,10 +75,10 @@ write_input(const int dx, const int dy, const uint8_t swap) { } // Warning: performs _no_ checks on input whatsoever -static enum E_RESULT +static enum ACT_RESULT parse_line(const char *pt, const ssize_t read) { ssize_t idx; - enum E_RESULT r; + enum ACT_RESULT r; int total_plies = 0; for (idx=0;idx<read;idx++) { @@ -159,7 +159,7 @@ This program comes with ABSOLUTELY NO WARRANTY; and is made available under the int main(int argc, char **argv) { (void)(argc); - enum E_RESULT r; + enum ACT_RESULT r; enum WIN_TYPE win; uint32_t games = 0, overflow=0, illegal = 0; uint32_t road_wins=0, flat_wins=0, road_turns=0, flat_turns=0, |
