Add header guards to the header files.

darcs-hash:20051004151139-35ec8-7af69b9d7647d145dc621f7eaea726e729cff554.gz
This commit is contained in:
James Vega
2005-10-05 01:11:39 +10:00
parent c361d8564c
commit e27664b13b
27 changed files with 191 additions and 14 deletions

View File

@@ -5,6 +5,11 @@ inputrc information for key bindings.
*/
#ifndef FISH_INPUT_H
#define FISH_INPUT_H
#include <wchar.h>
/**
Key codes for inputrc-style keyboard functions that are passed on
to the caller of input_read()
@@ -107,3 +112,4 @@ void input_parse_inputrc_line( wchar_t *cmd );
*/
wchar_t input_get_code( wchar_t *name );
#endif