summaryrefslogtreecommitdiffstats
path: root/src/commands.h
diff options
context:
space:
mode:
authorPatrick McDermott <patrick.mcdermott@libiquity.com>2019-07-28 23:12:26 (EDT)
committer Patrick McDermott <patrick.mcdermott@libiquity.com>2019-07-28 23:12:26 (EDT)
commita66f3991715861e1ea6bf5d80df410dc4140fd32 (patch)
treeb8f6c67e3f5ae0b0aac2e5c79c1b50d191111003 /src/commands.h
parentee4c4798715680d091f1bfcf561ce8d747f5088e (diff)
s_client: Stub
Diffstat (limited to 'src/commands.h')
-rw-r--r--src/commands.h28
1 files changed, 28 insertions, 0 deletions
diff --git a/src/commands.h b/src/commands.h
new file mode 100644
index 0000000..192209e
--- /dev/null
+++ b/src/commands.h
@@ -0,0 +1,28 @@
+/*
+ * Command prototypes
+ *
+ * Copyright (C) 2019 Patrick McDermott
+ *
+ * This file is part of wolfssl-util.
+ *
+ * wolfssl-util 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.
+ *
+ * wolfssl-util 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 wolfssl-util. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+#ifndef COMMANDS_H_
+#define COMMANDS_H_
+
+int
+s_client(int argc, char **argv);
+
+#endif /* COMMANDS_H_ */