Commit 1d5c1ef0 1d5c1ef0d22380eafe6ee78991e0c60315a33222 by Sergey Poznyakoff

Minor changes.

* include/mailutils/wordsplit.h (mu_wordsplit_free_words): New proto.
* libmu_auth/sql.c: Include wordsplit.h
1 parent c66e1b8d
...@@ -126,6 +126,7 @@ int mu_wordsplit (const char *s, struct mu_wordsplit *p, int flags); ...@@ -126,6 +126,7 @@ int mu_wordsplit (const char *s, struct mu_wordsplit *p, int flags);
126 int mu_wordsplit_len (const char *s, size_t len, 126 int mu_wordsplit_len (const char *s, size_t len,
127 struct mu_wordsplit *p, int flags); 127 struct mu_wordsplit *p, int flags);
128 void mu_wordsplit_free (struct mu_wordsplit *p); 128 void mu_wordsplit_free (struct mu_wordsplit *p);
129 void mu_wordsplit_free_words (struct mu_wordsplit *ws);
129 130
130 int mu_wordsplit_c_unquote_char (int c); 131 int mu_wordsplit_c_unquote_char (int c);
131 int mu_wordsplit_c_quote_char (int c); 132 int mu_wordsplit_c_quote_char (int c);
......
...@@ -50,6 +50,7 @@ ...@@ -50,6 +50,7 @@
50 #include <mailutils/util.h> 50 #include <mailutils/util.h>
51 #include <mailutils/sql.h> 51 #include <mailutils/sql.h>
52 #include <mailutils/cstr.h> 52 #include <mailutils/cstr.h>
53 #include <mailutils/wordsplit.h>
53 #include "sql.h" 54 #include "sql.h"
54 55
55 #ifdef USE_SQL 56 #ifdef USE_SQL
......