]> diplodocus.org Git - nmh/blobdiff - sbr/unquote.c
test-subpart: Send mhshow's stderr down pipe; don't discard.
[nmh] / sbr / unquote.c
index f9fa9112fccfd9f6fab7ab566ee04babda9d077c..f2e3fd07bdaffd5a1e58391739a9b64bacfdd0c2 100644 (file)
@@ -1,5 +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,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.
@@ -40,6 +40,4 @@ unquote_string(const char *input, char *output)
     }
 
     output[m] = '\0';
-
-    return;
 }