aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/print_help.h
diff options
context:
space:
mode:
authorGravatar ridiculousfish <corydoras@ridiculousfish.com>2015-07-24 00:50:58 -0700
committerGravatar ridiculousfish <corydoras@ridiculousfish.com>2015-07-24 00:59:27 -0700
commitb4f53143b0e05fd3061cdf2e65e17a6a2904090b (patch)
tree4785bf31f7b89fc2420aa740d9a6967dc6c6f9b1 /src/print_help.h
parent9c2fdc6da57032c4448b59de5872086eea626b74 (diff)
Migrate source files into src/ directory
This change moves source files into a src/ directory, and puts object files into an obj/ directory. The Makefile and xcode project are updated accordingly. Fixes #1866
Diffstat (limited to 'src/print_help.h')
-rw-r--r--src/print_help.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/print_help.h b/src/print_help.h
new file mode 100644
index 00000000..005800b1
--- /dev/null
+++ b/src/print_help.h
@@ -0,0 +1,15 @@
+
+/** \file print_help.h
+ Print help message for the specified command
+*/
+
+#ifndef FISH_PRINT_HELP_H
+#define FISH_PRINT_HELP_H
+
+/**
+ Print help message for the specified command
+*/
+
+void print_help(const char *cmd, int fd);
+
+#endif