aboutsummaryrefslogtreecommitdiff
path: root/lib/forlan.h
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org.ua>2012-09-25 17:31:24 +0300
committerSergey Poznyakoff <gray@gnu.org.ua>2012-09-25 17:45:23 +0300
commit455e12faaf5efd997ff74ad04c0fcc62608477a5 (patch)
tree46d24aba487fb2ea76078ef4da60357ff0a340e4 /lib/forlan.h
parent2f5d961c798802f1e467de1cd310f661e0a45fa7 (diff)
downloadeclat-455e12faaf5efd997ff74ad04c0fcc62608477a5.tar.gz
eclat-455e12faaf5efd997ff74ad04c0fcc62608477a5.tar.bz2
Use forlan to format the output.
* lib/forlan.h (forlan_lex_begin): Remove (forlan_lex_from_buffer) (forlan_lex_from_file): New protos. (forlan_parse): Remove. (forlan_parse_bufferm,forlan_parse_file): New protos. * lib/forlangrm.y (forlan_parse): Remove. (forlan_parse_bufferm,forlan_parse_file): New functions. * lib/forlanlex.l (YY_INPUT): Optionally, read input from file. (forlan_lex_begin): Remove (forlan_lex_from_buffer) (forlan_lex_from_file): New functions. * src/cmdline.opt: New options: --format, --sort * src/config.c: New statement: format. * src/eclat.c: Use output format scripts, if provided. * src/eclat.conf: Define output format for DescribeTags. * src/eclat.h: Include forlan.h (define_format): New proto. * tests/tforlan.c: New option: -s
Diffstat (limited to 'lib/forlan.h')
-rw-r--r--lib/forlan.h11
1 files changed, 7 insertions, 4 deletions
diff --git a/lib/forlan.h b/lib/forlan.h
index b789d7e..300ef57 100644
--- a/lib/forlan.h
+++ b/lib/forlan.h
@@ -23,11 +23,14 @@ typedef struct forlan_eval_env *forlan_eval_env_t;
extern int forlan_dbg;
void forlan_init();
-void forlan_lex_begin(const char *input, size_t length,
- struct grecs_locus_point *pt);
+void forlan_lex_from_buffer(const char *input, size_t length,
+ struct grecs_locus_point *pt);
+void forlan_lex_from_file(FILE *fp, struct grecs_locus_point *pt);
+
void forlan_lex_end(void);
-forlan_eval_env_t forlan_parse(const char *input, size_t length,
- struct grecs_locus_point *pt);
+forlan_eval_env_t forlan_parse_buffer(const char *input, size_t length,
+ struct grecs_locus_point *pt);
+forlan_eval_env_t forlan_parse_file(FILE *fp, struct grecs_locus_point *pt);
union forlan_node; /* Declared below */

Return to:

Send suggestions and report system problems to the System administrator.