summaryrefslogtreecommitdiff
path: root/src/input.h
diff options
context:
space:
mode:
authorAdrian Thurston <thurston@colm.net>2018-07-10 12:42:33 +0800
committerAdrian Thurston <thurston@colm.net>2018-07-10 12:42:33 +0800
commitb2cd44558e9b780c791f1c48ef6946e6d04fab50 (patch)
tree07ac5b2472b93a96b319c5897faf56c91a31d822 /src/input.h
parent723b9790f920360fe7947e4c9bf87db1729d20bb (diff)
downloadcolm-b2cd44558e9b780c791f1c48ef6946e6d04fab50.tar.gz
replace eof_sent in input interface with bit in pda_run
Diffstat (limited to 'src/input.h')
-rw-r--r--src/input.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/input.h b/src/input.h
index 1c744d94..05f70883 100644
--- a/src/input.h
+++ b/src/input.h
@@ -104,8 +104,6 @@ struct input_funcs \
void (*append_stream)( struct colm_program *prg, struct input_impl *si, struct colm_stream *stream ); \
struct colm_tree *(*undo_append_stream)( struct colm_program *prg, struct input_impl *si ); \
void (*set_eof_mark)( struct colm_program *prg, struct input_impl *si, char eof_mark ); \
- char (*get_eof_sent)( struct colm_program *prg, struct input_impl *si ); \
- void (*set_eof_sent)( struct colm_program *prg, struct input_impl *si, char eof_sent ); \
void (*transfer_loc)( struct colm_program *prg, struct colm_location *loc, struct input_impl *si ); \
void (*destructor)( struct colm_program *prg, struct colm_tree **sp, struct input_impl *si ); \
}