]> git.saurik.com Git - bison.git/blobdiff - src/location.h
Fix testsuite for ./configure --enable-gcc-warnings:
[bison.git] / src / location.h
index 49d2a2edfae801305872808c5fd72257b09ab68e..542c632057276b29dd646fc40db7efd85ca47247 100644 (file)
@@ -40,6 +40,15 @@ typedef struct
 
 } boundary;
 
+/* Set the position of \a a. */
+static inline void
+boundary_set (boundary *b, const char *f, int l, int c)
+{
+  b->file = f; 
+  b->line = l;         
+  b->column = c;               
+}
+
 /* Return nonzero if A and B are equal boundaries.  */
 static inline bool
 equal_boundaries (boundary a, boundary b)
@@ -64,6 +73,11 @@ typedef struct
 
 extern location const empty_location;
 
+/* Set *LOC and adjust scanner cursor to account for token TOKEN of
+   size SIZE.  */
+void location_compute (location *loc,
+                      boundary *cur, char const *token, size_t size);
+
 void location_print (FILE *out, location loc);
 
 #endif /* ! defined LOCATION_H_ */