mangle: Move input fetching functions to mangle.c
diff --git a/cmdline.c b/cmdline.c
index fc3c737..01ed3dc 100644
--- a/cmdline.c
+++ b/cmdline.c
@@ -77,7 +77,9 @@
     return ret;
 }
 
-static const char* cmdlineYesNo(bool yes) { return (yes ? "true" : "false"); }
+static const char* cmdlineYesNo(bool yes) {
+    return (yes ? "true" : "false");
+}
 
 static void cmdlineHelp(const char* pname, struct custom_option* opts) {
     LOG_HELP_BOLD("Usage: %s [options] -- path_to_command [args]", pname);