diff options
author | Richard Jones <rjones@redhat.com> | 2009-04-03 23:47:47 +0100 |
---|---|---|
committer | Richard Jones <rjones@redhat.com> | 2009-04-03 23:47:47 +0100 |
commit | bc0b3d6f473e607972d29be27f7ae6b1d0489c3b (patch) | |
tree | a2129e7328c1adff8c32890d57a86c36b908ecff /fish/fish.h | |
parent | b72ec21d24824720385c9cd024b7f1eae734f4a4 (diff) | |
download | libguestfs-bc0b3d6f473e607972d29be27f7ae6b1d0489c3b.tar.gz libguestfs-bc0b3d6f473e607972d29be27f7ae6b1d0489c3b.tar.xz libguestfs-bc0b3d6f473e607972d29be27f7ae6b1d0489c3b.zip |
Added outline of shell command, added generator support.
Diffstat (limited to 'fish/fish.h')
-rw-r--r-- | fish/fish.h | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/fish/fish.h b/fish/fish.h new file mode 100644 index 00000000..3e811703 --- /dev/null +++ b/fish/fish.h @@ -0,0 +1,29 @@ +/* libguestfs - the guestfsd daemon + * Copyright (C) 2009 Red Hat Inc. + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License along + * with this program; if not, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + */ + +#ifndef FISH_H +#define FISH_H + +/* in fish.c */ +extern void pod2text (const char *heading, const char *body); + +/* in cmds.c (auto-generated) */ +extern void list_commands (void); +extern void display_command (const char *cmd); + +#endif /* FISH_H */ |