style: rename closure_* functions as closure_*

This is more consistent with the other files.

* closure.h, closure.c (new_closure, free_closure): Rename as...
(closure_new, closure_free): this.
Adjust dependencies.
This commit is contained in:
Akim Demaille
2019-01-27 20:14:11 +01:00
parent e585377e68
commit 7355a35e4b
6 changed files with 15 additions and 15 deletions

View File

@@ -27,7 +27,7 @@
data so that closure can be called. n is the number of elements to
allocate for itemset. */
void new_closure (unsigned n);
void closure_new (unsigned n);
/* Given the kernel (aka core) of a state (a sorted vector of item numbers
@@ -49,7 +49,7 @@ void closure (item_number const *items, size_t n);
/* Frees ITEMSET, RULESET and internal data. */
void free_closure (void);
void closure_free (void);
extern item_number *itemset;
extern size_t nitemset;