diff options
author | Richard Jones <rjones@redhat.com> | 2009-05-12 17:17:19 +0100 |
---|---|---|
committer | Richard Jones <rjones@redhat.com> | 2009-05-12 17:17:19 +0100 |
commit | b2a5fec5f8b8b6bf1313d8474448cd8b50057d1b (patch) | |
tree | 33cc222fb6eb2726c97b7268fba2b75601ea21e6 /daemon/daemon.h | |
parent | 45d78361d791f4a752fca9472b81bdc75f9f92a4 (diff) | |
download | libguestfs-b2a5fec5f8b8b6bf1313d8474448cd8b50057d1b.tar.gz libguestfs-b2a5fec5f8b8b6bf1313d8474448cd8b50057d1b.tar.xz libguestfs-b2a5fec5f8b8b6bf1313d8474448cd8b50057d1b.zip |
Refactor line splitting code in the daemon, and fix it so it works.
Diffstat (limited to 'daemon/daemon.h')
-rw-r--r-- | daemon/daemon.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/daemon/daemon.h b/daemon/daemon.h index 001c7038..8ad7b7c7 100644 --- a/daemon/daemon.h +++ b/daemon/daemon.h @@ -47,6 +47,8 @@ extern int commandv (char **stdoutput, char **stderror, extern int commandrv (char **stdoutput, char **stderror, char * const* const argv); +extern char **split_lines (char *str); + extern int shell_quote (char *out, int len, const char *in); extern int verbose; |