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

@@ -6,6 +6,13 @@
features.
*/
#ifndef FISH_READER_H
#define FISH_READER_H
#include <wchar.h>
#include "util.h"
/**
Read commands from fd 0 until encountering EOF
*/
@@ -184,3 +191,4 @@ void reader_current_token_extent( wchar_t **a, wchar_t **b, wchar_t **pa, wchar_
*/
void reader_replace_current_token( wchar_t *new_token );
#endif