summaryrefslogtreecommitdiffstats
path: root/daemon/actions.h
diff options
context:
space:
mode:
authorRichard Jones <rjones@redhat.com>2009-04-04 16:38:28 +0100
committerRichard Jones <rjones@redhat.com>2009-04-04 16:38:28 +0100
commit843514eef9dc6d04d71e031ba9ddb16e2beb9a04 (patch)
tree8318edc62b21e5823cfd5c4171d8a974571bc90d /daemon/actions.h
parenteb50cde931893e54c5aa9816cbca49e36891be8f (diff)
downloadlibguestfs-843514eef9dc6d04d71e031ba9ddb16e2beb9a04.tar.gz
libguestfs-843514eef9dc6d04d71e031ba9ddb16e2beb9a04.tar.xz
libguestfs-843514eef9dc6d04d71e031ba9ddb16e2beb9a04.zip
Implement RString and RStringList return types.
- implement 'll' command. - outlines for 'ls' and 'cat' commands.
Diffstat (limited to 'daemon/actions.h')
-rw-r--r--daemon/actions.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/daemon/actions.h b/daemon/actions.h
index 61b583cb..c4b9b157 100644
--- a/daemon/actions.h
+++ b/daemon/actions.h
@@ -19,6 +19,9 @@
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
+extern char *do_cat (const char *path);
+extern char *do_ll (const char *directory);
+extern char **do_ls (const char *directory);
extern int do_mount (const char *device, const char *mountpoint);
extern int do_sync ();
extern int do_touch (const char *path);