| author | ali <ali@juiblex.co.uk> |
| Sat Sep 21 19:34:56 2013 +0100 (2013-09-21) | |
| changeset 96 | aff051e0e4cf |
| child 103 | adc06e9e8470 |
| permissions | -rw-r--r-- |
1 #ifndef COUNTERS_H
2 #define COUNTERS_H
4 #include <glib.h>
6 struct counters {
7 GTree *matching;
8 long quot;
9 int c_unders;
10 };
12 void increment_matching(struct counters *counters,gunichar ch,gboolean open);
13 int matching_count(const struct counters *counters,gunichar ch,gboolean open);
14 int matching_difference(const struct counters *counters,gunichar ch);
15 void counters_destroy(struct counters *counters);
17 #endif /* COUNTERS_H */