X-Git-Url: https://diplodocus.org/git/nmh/blobdiff_plain/177f020f122827214159c46dcfe7ded1e3c8d1c3..afaab789:/sbr/unquote.c?ds=inline diff --git a/sbr/unquote.c b/sbr/unquote.c index dde1226d..b6411e11 100644 --- a/sbr/unquote.c +++ b/sbr/unquote.c @@ -1,4 +1,4 @@ -/* unquote.c: Handle quote removal and quoted-pair strings on +/* unquote.c -- Handle quote removal and quoted-pair strings on * RFC 2822-5322 atoms. * * This code is Copyright (c) 2013, by the authors of nmh. See the @@ -7,6 +7,7 @@ */ #include +#include "unquote.h" /* * Remove quotes (and handle escape strings) from RFC 5322 quoted-strings. @@ -39,6 +40,4 @@ unquote_string(const char *input, char *output) } output[m] = '\0'; - - return; }