summaryrefslogtreecommitdiff
path: root/src/input.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/input.h')
-rw-r--r--src/input.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/input.h b/src/input.h
index 9b91a7b5..6e3b16b6 100644
--- a/src/input.h
+++ b/src/input.h
@@ -195,10 +195,11 @@ struct stream_impl_data
int *line_len;
int lines_alloc;
+ int lines_cur;
};
-void stream_impl_push_line( struct stream_impl_data *ss, int line, int ll );
-int stream_impl_pop_line( struct stream_impl_data *ss, int line );
+void stream_impl_push_line( struct stream_impl_data *ss, int ll );
+int stream_impl_pop_line( struct stream_impl_data *ss );
struct input_impl *colm_impl_new_generic( char *name );