X-Git-Url: https://git.cworth.org/git?a=blobdiff_plain;f=dict.h;h=ab962c20469bfae94808dbc8e2271a169edfd3b1;hb=843863bc5725d169a5cb6da0a392d9398651cd51;hp=d5aa1cd529ad8fad71a21658811c3e40177e9305;hpb=54a35ad5a96cc57816a9e05ab9d1e1513c202894;p=wordgame diff --git a/dict.h b/dict.h index d5aa1cd..ab962c2 100644 --- a/dict.h +++ b/dict.h @@ -19,6 +19,10 @@ #ifndef _DICT_H_ #define _DICT_H_ +/* Portably, schmortability. I want ease of programming. */ +#define _GNU_SOURCE +#include +#include #include #ifndef FALSE @@ -78,6 +82,9 @@ dict_count (dict_t *dict, int dict_print (dict_t *dict); +int +dict_print_by_length (dict_t *dict); + int dict_print_if (dict_t *dict, dict_entry_predicate_t predicate); @@ -86,6 +93,31 @@ int dict_print_by_length_if (dict_t *dict, dict_entry_predicate_t predicate); +/* More general callback-based iteration of all entries */ +typedef void (* dict_action_t) (void *closure, char *word, dict_entry_t *entry); + +int +dict_for_each (dict_t *dict, + dict_action_t action, + void *closure); + +int +dict_for_each_by_length (dict_t *dict, + dict_action_t action, + void *closure); + +int +dict_for_each_if (dict_t *dict, + dict_action_t action, + void *closure, + dict_entry_predicate_t predicate); + +int +dict_for_each_by_length_if (dict_t *dict, + dict_action_t action, + void *closure, + dict_entry_predicate_t predicate); + /* Character-by-character perusal of the dictionary */ dict_cursor_t dict_root (dict_t *dict);