aboutsummaryrefslogtreecommitdiffhomepage
path: root/complete.h
diff options
context:
space:
mode:
authorGravatar James Vega <jamessan@jamessan.com>2005-10-05 01:11:39 +1000
committerGravatar James Vega <jamessan@jamessan.com>2005-10-05 01:11:39 +1000
commite27664b13b11070e561fdd313ca0a5b9950c2c46 (patch)
treeef35a6b3fb51a462076e626c15ba1d3714ce0177 /complete.h
parentc361d8564c6dc4b142d348b0f8053a9384b8e451 (diff)
Add header guards to the header files.
darcs-hash:20051004151139-35ec8-7af69b9d7647d145dc621f7eaea726e729cff554.gz
Diffstat (limited to 'complete.h')
-rw-r--r--complete.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/complete.h b/complete.h
index 9a8f33ce..2e6ac11d 100644
--- a/complete.h
+++ b/complete.h
@@ -4,6 +4,13 @@
These functions are used for storing and retrieving tab-completion data, as well as for performing tab-completion.
*/
+#ifndef FISH_COMPLETE_H
+#define FISH_COMPLETE_H
+
+#include <wchar.h>
+
+#include "util.h"
+
/** Use all completions */
#define SHARED 0
/** Do not use file completion */
@@ -153,3 +160,5 @@ int complete_is_valid_argument( const wchar_t *str,
\param reload should the commands completions be reloaded, even if they where previously loaded. (This is set to true on actual completions, so that changed completion are updated in running shells)
*/
void complete_load( wchar_t *cmd, int reload );
+
+#endif