diff options
Diffstat (limited to 'match.h')
-rw-r--r-- | match.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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 |