diff options
Diffstat (limited to 'gdb/macroexp.h')
-rw-r--r-- | gdb/macroexp.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/gdb/macroexp.h b/gdb/macroexp.h index b10c13d87cf..c563d1cce55 100644 --- a/gdb/macroexp.h +++ b/gdb/macroexp.h @@ -84,5 +84,11 @@ char *macro_expand_next (char **lexptr, macro_lookup_ftype *lookup_func, void *lookup_baton); +/* Functions to classify characters according to cpp rules. */ + +int macro_is_whitespace (int c); +int macro_is_identifier_nondigit (int c); +int macro_is_digit (int c); + #endif /* MACROEXP_H */ |