diff options
| author | kr.angelov <kr.angelov@gmail.com> | 2013-09-05 11:20:39 +0000 |
|---|---|---|
| committer | kr.angelov <kr.angelov@gmail.com> | 2013-09-05 11:20:39 +0000 |
| commit | 7c0bad50921365746ea362710015853a4879c0a7 (patch) | |
| tree | ead13c32a5b2d8ed2968bcdc5b58e5e7eed79720 /src/runtime/c/pgf/lexer.h | |
| parent | 504341dfbafdcd858704350162bb7e233cf6daf2 (diff) | |
remove the read and write modules from libgu. this simplifies the i/o layer
Diffstat (limited to 'src/runtime/c/pgf/lexer.h')
| -rw-r--r-- | src/runtime/c/pgf/lexer.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/runtime/c/pgf/lexer.h b/src/runtime/c/pgf/lexer.h index 5a0323332..b55c07930 100644 --- a/src/runtime/c/pgf/lexer.h +++ b/src/runtime/c/pgf/lexer.h @@ -1,7 +1,7 @@ #ifndef PGF_LEXER_H_ #define PGF_LEXER_H_ -#include <gu/read.h> +#include <gu/in.h> #include <pgf/expr.h> /// A single lexical token @@ -20,7 +20,7 @@ typedef struct { } PgfLexer; PgfLexer* -pgf_new_simple_lexer(GuReader *rdr, GuPool *pool); +pgf_new_simple_lexer(GuIn *in, GuPool *pool); PgfToken pgf_lexer_read_token(PgfLexer *lexer, GuExn* err); |
