diff options
Diffstat (limited to 'web/web_match.c')
-rw-r--r-- | web/web_match.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/web/web_match.c b/web/web_match.c index 5f87f28..d05efa5 100644 --- a/web/web_match.c +++ b/web/web_match.c @@ -4,6 +4,7 @@ #include <stdlib.h> struct match_state *state; +struct match_opts *match_opts; void free_state() { @@ -14,6 +15,12 @@ void free_state() state = NULL; } +void match_opts_free() +{ + free(match_opts); + match_opts = NULL; +} + bool match_is_over() { return state->legs[0]->rem <= 0 || state->legs[1]->rem <= 0; |