summaryrefslogtreecommitdiff
path: root/src/colm.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/colm.h')
-rw-r--r--src/colm.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/colm.h b/src/colm.h
index aac0ee2c..55368840 100644
--- a/src/colm.h
+++ b/src/colm.h
@@ -35,6 +35,13 @@ struct colm_sections;
struct colm_tree;
struct colm_location;
+struct indent_impl
+{
+ /* Indentation. */
+ int level;
+ int indent;
+};
+
extern struct colm_sections colm_object;
typedef unsigned long colm_value_t;
@@ -59,6 +66,7 @@ struct colm_print_args
int comm;
int attr;
int trim;
+ struct indent_impl *indent;
void (*out)( struct colm_print_args *args, const char *data, int length );
void (*open_tree)( struct colm_program *prg, struct colm_tree **sp,