summaryrefslogtreecommitdiff
path: root/match.h
diff options
context:
space:
mode:
Diffstat (limited to 'match.h')
-rw-r--r--match.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/match.h b/match.h
index 9cdb261..ef75bac 100644
--- a/match.h
+++ b/match.h
@@ -15,11 +15,12 @@ struct leg {
char *name;
int start;
int rem;
- int n_visits;
+ int n_visits, size_visits;
struct visit *visits;
};
struct leg *leg_init(int points, char *name);
void leg_free(struct leg *l);
+void leg_grow_visits(struct leg *l);
#endif