X-Git-Url: http://git.marmaro.de/?p=mmh;a=blobdiff_plain;f=h%2Fprototypes.h;h=8575b226d57a2e510789e65ff5bd4470fad84832;hp=42767f571e00c258fc7780ff77c8c3cba41c715c;hb=cc274fe6a74f58cfa17dc263d12d9d940e91b934;hpb=4c30d368bca8b3f108a7e86a5b890e33470cdebf diff --git a/h/prototypes.h b/h/prototypes.h index 42767f5..8575b22 100644 --- a/h/prototypes.h +++ b/h/prototypes.h @@ -39,6 +39,7 @@ void cpydata(int, int, char *, char *); void cpydgst(int, int, char *, char *); int decode_rfc2047(char *, char *, size_t); int default_done(int); +int encode_rfc2047(const char *name, char **value, const char *charset); int execprog(char *, char **); int execprogl(char *, char *, ...); char *expandfol(char *); @@ -73,6 +74,7 @@ char *m_mktemp(const char *, int *, FILE **); char *m_mktemp2(const char *, const char *, int *, FILE **); void thisisanmbox(FILE *); int makedir(char *); +int mh_strcasecmp(const char *s1, const char *s2); char *norm_charmap(char *); char *new_fs(char *, char *); int pidwait(pid_t, int); @@ -108,28 +110,12 @@ char *toabsdir(char *); char *trim(unsigned char *); char *trimcpy(unsigned char *); int unputenv(char *); +void unquote_string(const char *input, char *output); int uprf(char *, char *); int vfgets(FILE *, char **); char *write_charset_8bit(void); -/* - * Remove quotes and quoted-pair sequences from RFC-5322 atoms. - * - * Currently the actual algorithm is simpler than it technically should - * be: any quotes are simply eaten, unless they're preceded by the escape - * character (\). This seems to be sufficient for our needs for now. - * - * Arguments: - * - * input - The input string - * output - The output string; is assumed to have at least as much - * room as the input string. At worst the output string will - * be the same size as the input string; it might be smaller. - * - */ -void unquote_string(const char *input, char *output); -int mh_strcasecmp(const char *s1, const char *s2); /* @@ -177,3 +163,4 @@ int is_readonly(struct msgs *); void set_readonly(struct msgs *); int other_files(struct msgs *); void set_other_files(struct msgs *); +