]> git.xonotic.org Git - xonotic/gmqcc.git/blobdiff - gmqcc.h
Remove spelling corrector
[xonotic/gmqcc.git] / gmqcc.h
diff --git a/gmqcc.h b/gmqcc.h
index 43153e9271167187bf3727005938fae15101b4fb..7da3d649ba5a0fbf75c8b106f4c86f53944a5644 100644 (file)
--- a/gmqcc.h
+++ b/gmqcc.h
@@ -359,27 +359,6 @@ fs_dir_t      *fs_dir_open    (const char *);
 int            fs_dir_close   (fs_dir_t *);
 fs_dirent_t   *fs_dir_read    (fs_dir_t *);
 
-
-/* correct.c */
-typedef struct correct_trie_s {
-    void                  *value;
-    struct correct_trie_s *entries;
-} correct_trie_t;
-
-correct_trie_t* correct_trie_new(void);
-
-typedef struct {
-    char   ***edits;
-    size_t  **lens;
-} correction_t;
-
-void  correct_del (correct_trie_t*, size_t **);
-void  correct_add (correct_trie_t*, size_t ***, const char *);
-char *correct_str (correction_t *, correct_trie_t*, const char *);
-void  correct_init(correction_t *);
-void  correct_free(correction_t *);
-
-
 /* code.c */
 
 /* Note: if you change the order, fix type_sizeof in ir.c */