Commit 47b0bd62 47b0bd62231abd41f2f89622d8be1d917b3cd5a2 by Sam Roberts

exposed sieve_errstr() in public API, and declare sieve_errname()

1 parent f1801528
......@@ -151,4 +151,10 @@ int sieve_execute_script(sieve_script_t *script,
/* Get space separated list of extensions supported by the implementation */
const char *sieve_listextensions(void);
/* Return a string describing the sieve return code. */
const char *sieve_errstr(int code);
/* Return a string naming the sieve return code. */
const char *sieve_errname(int code);
#endif
......