summaryrefslogtreecommitdiff
path: root/include/mailutils/yyloc.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/mailutils/yyloc.h')
-rw-r--r--include/mailutils/yyloc.h42
1 files changed, 42 insertions, 0 deletions
diff --git a/include/mailutils/yyloc.h b/include/mailutils/yyloc.h
new file mode 100644
index 000000000..9a82e8b65
--- /dev/null
+++ b/include/mailutils/yyloc.h
@@ -0,0 +1,42 @@
+#define YYLTYPE struct mu_locus_range
+#define YYLLOC_DEFAULT(Current, Rhs, N) \
+ do \
+ { \
+ if (N) \
+ { \
+ (Current).beg = YYRHSLOC(Rhs, 1).beg; \
+ (Current).end = YYRHSLOC(Rhs, N).end; \
+ } \
+ else \
+ { \
+ (Current).beg = YYRHSLOC(Rhs, 0).end; \
+ (Current).end = (Current).beg; \
+ } \
+ } while (0)
+#define YY_LOCATION_PRINT(File, Loc) \
+ do \
+ { \
+ if (!mu_locus_point_same_file (&(Loc).beg, &(Loc).end)) \
+ fprintf (File, "%s:%u.%u-%s:%u.%u", \
+ (Loc).beg.mu_file, \
+ (Loc).beg.mu_line, (Loc).beg.mu_col, \
+ (Loc).end.mu_file, \
+ (Loc).end.mu_line, (Loc).end.mu_col); \
+ else if ((Loc).beg.mu_line != (Loc).end.mu_line) \
+ fprintf (File, "%s:%u.%u-%u.%u", \
+ (Loc).beg.mu_file, \
+ (Loc).beg.mu_line, (Loc).beg.mu_col, \
+ (Loc).end.mu_line, (Loc).end.mu_col); \
+ else if ((Loc).beg.mu_col != (Loc).end.mu_col) \
+ fprintf (File, "%s:%u.%u-%u", \
+ (Loc).beg.mu_file, \
+ (Loc).beg.mu_line, (Loc).beg.mu_col, \
+ (Loc).end.mu_col); \
+ else \
+ fprintf (File, "%s:%u.%u", \
+ (Loc).beg.mu_file, \
+ (Loc).beg.mu_line, (Loc).beg.mu_col); \
+} while (0)
+
+
+

Return to:

Send suggestions and report system problems to the System administrator.