commit 403aebe44382e92a3e1caba426f132abbc9d4d5c
parent ae26c55033ba4e73a3354efacf5e7fd2cdce51df
Author: dwrz <dwrz@dwrz.net>
Date: Sat, 6 Apr 2019 20:31:18 +0000
Remove internal functions from header
Diffstat:
1 file changed, 0 insertions(+), 12 deletions(-)
diff --git a/c/word-count/src/word_count.h b/c/word-count/src/word_count.h
@@ -26,16 +26,4 @@ typedef struct word_count_word {
// words will contain the results up to that point.
int word_count(const char *input_text, word_count_word_t *words);
-bool increment_seen_words(char *word, int count, word_count_word_t *origin);
-
-void lowercase(char *s);
-
-bool is_quote_char(char s);
-
-bool is_quoted_word(char *token);
-
-void process_token(int *unique_words,
- char *token,
- word_count_word_t *words);
-
#endif