summaryrefslogtreecommitdiff
path: root/tools/eos-profile-tool/eos-profile-cmd-help.c
diff options
context:
space:
mode:
Diffstat (limited to 'tools/eos-profile-tool/eos-profile-cmd-help.c')
-rw-r--r--tools/eos-profile-tool/eos-profile-cmd-help.c27
1 files changed, 27 insertions, 0 deletions
diff --git a/tools/eos-profile-tool/eos-profile-cmd-help.c b/tools/eos-profile-tool/eos-profile-cmd-help.c
new file mode 100644
index 0000000..88f8b4e
--- /dev/null
+++ b/tools/eos-profile-tool/eos-profile-cmd-help.c
@@ -0,0 +1,27 @@
+#include "config.h"
+
+#include <glib.h>
+
+gboolean
+eos_profile_cmd_help_parse_args (int argc,
+ char **argv)
+{
+ return TRUE;
+}
+
+int
+eos_profile_cmd_help_main (void)
+{
+ g_print (
+ "eos-profile\n"
+ "\n"
+ "Usage: eos-profile <COMMAND> [OPTIONS...]\n"
+ "\n"
+ "Examples:\n"
+ "\n"
+ " eos-profile help - This help screen\n"
+ "\n"
+ );
+
+ return 0;
+}