]> diplodocus.org Git - nmh/blobdiff - sbr/unquote.c
m_backup.c: Move interface to own file.
[nmh] / sbr / unquote.c
index 0708f6fd4722cb39b7e51b55eb43c3ec52c4f684..f2e3fd07bdaffd5a1e58391739a9b64bacfdd0c2 100644 (file)
@@ -6,7 +6,8 @@
  * complete copyright information.
  */
 
-#include <h/mh.h>
+#include "h/mh.h"
+#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;
 }