X-Git-Url: https://git.saurik.com/bison.git/blobdiff_plain/4517da37570b39a3d4b3f523dd373abe7c622bb0..c4bd5bf7c5b63334e8bb67af294800d4aec0fe06:/src/location.h diff --git a/src/location.h b/src/location.h index c4613bb7..542c6320 100644 --- a/src/location.h +++ b/src/location.h @@ -1,5 +1,5 @@ /* Locations for Bison - Copyright (C) 2002, 2004 Free Software Foundation, Inc. + Copyright (C) 2002, 2004, 2005, 2006 Free Software Foundation, Inc. This file is part of Bison, the GNU Compiler Compiler. @@ -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; -void location_print (FILE *, 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_ */