From cfd5fe53ddcfcf1d5f7434cf6f43425e4e940971 Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Mon, 6 Dec 2021 19:21:48 -0500 Subject: Disable formatted acronyms (again). Not quite up to snuff. --- jdtalk.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'jdtalk.h') diff --git a/jdtalk.h b/jdtalk.h index e8237cd..8256041 100644 --- a/jdtalk.h +++ b/jdtalk.h @@ -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); -- cgit