summaryrefslogtreecommitdiff
path: root/match.h
diff options
context:
space:
mode:
authorDavid Vazgenovich Shakaryan <dvshakaryan@gmail.com>2022-05-01 10:34:36 -0700
committerDavid Vazgenovich Shakaryan <dvshakaryan@gmail.com>2022-05-01 10:34:36 -0700
commit9459b7fb563caae520bdf8d11da9b070ebff45e9 (patch)
tree4f20b3ead4224d564fd3b0a4d67b0ede98b5912d /match.h
parentf9117e7c9b5b6602e4eb55ee48815882a7085782 (diff)
downloaddartboat-9459b7fb563caae520bdf8d11da9b070ebff45e9.tar.gz
dartboat-9459b7fb563caae520bdf8d11da9b070ebff45e9.tar.xz
move valid points check to match file
Diffstat (limited to 'match.h')
-rw-r--r--match.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/match.h b/match.h
index ef75bac..ce52717 100644
--- a/match.h
+++ b/match.h
@@ -23,4 +23,6 @@ struct leg *leg_init(int points, char *name);
void leg_free(struct leg *l);
void leg_grow_visits(struct leg *l);
+bool is_points_valid(int pts, int rem);
+
#endif