X-Git-Url: http://git.madism.org/?a=blobdiff_plain;f=handler.c;h=e49d973a21380bc68681a1fdc65728939fd421bd;hb=ceffe3e66d8c6690ac460046945f09aee43e6d46;hp=e56136347af815d41ca713ebc85f55220f132159;hpb=45528548fd2dddcbef9396b0589ec88d722766ee;p=apps%2Fmadmutt.git diff --git a/handler.c b/handler.c index e561363..e49d973 100644 --- a/handler.c +++ b/handler.c @@ -139,7 +139,7 @@ static void qp_decode_line (char *dest, char *src, ssize_t * l, int last) * */ -void mutt_decode_quoted (STATE * s, long len, int istext, iconv_t cd) +static void mutt_decode_quoted (STATE * s, long len, int istext, iconv_t cd) { char line[STRING]; char decline[2 * STRING]; @@ -270,14 +270,14 @@ void mutt_decode_base64 (STATE * s, long len, int istext, iconv_t cd) state_reset_prefix (s); } -unsigned char decode_byte (char ch) +static unsigned char decode_byte (char ch) { if (ch == 96) return 0; return ch - 32; } -void mutt_decode_uuencoded (STATE * s, long len, int istext, iconv_t cd) +static void mutt_decode_uuencoded (STATE * s, long len, int istext, iconv_t cd) { char tmps[SHORT_STRING]; char linelen, c, l, out; @@ -631,7 +631,7 @@ static void enriched_set_flags (const char *tag, struct enriched_state *stte) } } -int text_enriched_handler (BODY * a, STATE * s) +static int text_enriched_handler (BODY * a, STATE * s) { enum { TEXT, LANGLE, TAG, BOGUS_TAG, NEWLINE, ST_EOF, DONE