summaryrefslogtreecommitdiff
path: root/src/pdarun.h
diff options
context:
space:
mode:
authorAdrian Thurston <thurston@colm.net>2018-07-08 16:48:49 +0800
committerAdrian Thurston <thurston@colm.net>2018-07-08 16:48:49 +0800
commitfca843990f60312d6e6c1b8774988cc624364d42 (patch)
tree5da69c25666f41f49766dcd02729db04dcd6c265 /src/pdarun.h
parentdeb9efc408109ad13846d2d6d3b1fe0e2f62ddf2 (diff)
downloadcolm-fca843990f60312d6e6c1b8774988cc624364d42.tar.gz
separating the input from stream type
Diffstat (limited to 'src/pdarun.h')
-rw-r--r--src/pdarun.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/pdarun.h b/src/pdarun.h
index 41020ebb..62a09b43 100644
--- a/src/pdarun.h
+++ b/src/pdarun.h
@@ -447,17 +447,17 @@ void colm_undo_stream_push( struct colm_program *prg, tree_t **sp,
struct stream_impl *input_stream, long length );
kid_t *make_token_with_data( struct colm_program *prg, struct pda_run *pda_run,
- struct stream_impl *input_stream, int id, head_t *tokdata );
+ struct input_impl *input_stream, int id, head_t *tokdata );
long colm_parse_loop( struct colm_program *prg, tree_t **sp, struct pda_run *pda_run,
- struct stream_impl *input_stream, long entry );
+ struct input_impl *input_stream, long entry );
long colm_parse_frag( struct colm_program *prg, tree_t **sp,
- struct pda_run *pda_run, stream_t *input, long entry );
+ struct pda_run *pda_run, input_t *input, long entry );
long colm_parse_finish( struct colm_program *prg, tree_t **sp,
struct pda_run *pda_run, stream_t *input, long entry );
long colm_parse_undo_frag( struct colm_program *prg, tree_t **sp, struct pda_run *pda_run,
- stream_t *input, long entry, long steps );
+ input_t *input, long entry, long steps );
void commit_clear_kid_list( program_t *prg, tree_t **sp, kid_t *kid );
void commit_clear_parse_tree( program_t *prg, tree_t **sp,