summaryrefslogtreecommitdiff
path: root/futility/cmd_hey.c
diff options
context:
space:
mode:
Diffstat (limited to 'futility/cmd_hey.c')
-rw-r--r--futility/cmd_hey.c20
1 files changed, 20 insertions, 0 deletions
diff --git a/futility/cmd_hey.c b/futility/cmd_hey.c
new file mode 100644
index 00000000..efd47d39
--- /dev/null
+++ b/futility/cmd_hey.c
@@ -0,0 +1,20 @@
+/*
+ * Copyright (c) 2013 The Chromium OS Authors. All rights reserved.
+ * Use of this source code is governed by a BSD-style license that can be
+ * found in the LICENSE file.
+ */
+
+#include <stdio.h>
+
+#include "futility.h"
+
+static int do_something(int argc, char *argv[])
+{
+ int i;
+ printf("this is %s\n", __func__);
+ for (i = 0; i < argc; i++)
+ printf("argv[%d] = %s\n", i, argv[i]);
+ return 0;
+}
+
+DECLARE_FUTIL_COMMAND(hey, do_something, "shout");