diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2021-12-06 19:21:48 -0500 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2021-12-06 19:21:48 -0500 |
commit | cfd5fe53ddcfcf1d5f7434cf6f43425e4e940971 (patch) | |
tree | f87c4b7222cdfc8ba34b32a96b32cc8c638e967f /jdtalk.h | |
parent | bf6b57adcd220c3704469cd06f21445e0eb13888 (diff) | |
download | jdtalkc-cfd5fe53ddcfcf1d5f7434cf6f43425e4e940971.tar.gz |
Disable formatted acronyms (again). Not quite up to snuff.
Diffstat (limited to 'jdtalk.h')
-rw-r--r-- | jdtalk.h | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -40,7 +40,7 @@ struct Dictionary *dictionary_new(); void dictionary_append(struct Dictionary **dict, char *s, unsigned type); int dictionary_read(FILE *fp, struct Dictionary **dict, unsigned type); struct Dictionary *dictionary_populate(); -int dictionary_contains(struct Dictionary *dict, const char *s, unsigned type); +unsigned dictionary_contains(struct Dictionary *dict[], const char *s, unsigned type); char *dictionary_word(struct Dictionary *dict, unsigned type); char *dictionary_word_formats(struct Dictionary *dict, const char *s); struct Dictionary *dictionary_of(struct Dictionary **src, unsigned type); @@ -52,7 +52,6 @@ char *str_leet(char *s); char *str_title_case(char *s); char *str_randomize_words(char *s); char *str_reverse(char *s); -char *str_album(char *s, char **parts); char *talkf(struct Dictionary *dict[], char *fmt, char **parts, size_t parts_max); char *talk_salad(struct Dictionary *dict[], size_t limit, char **parts, size_t parts_max); |