]> git.ipfire.org Git - thirdparty/gcc.git/blobdiff - gcc/c/c-parser.h
Update copyright years.
[thirdparty/gcc.git] / gcc / c / c-parser.h
index 7a30e30ac60a9e70a42a1d935696b8b8235f9df0..8d5fc3089b4cef1a07c984dfb59068b7d18549ca 100644 (file)
@@ -1,5 +1,5 @@
 /* Declarations for the parser for C and Objective-C.
-   Copyright (C) 1987-2019 Free Software Foundation, Inc.
+   Copyright (C) 1987-2022 Free Software Foundation, Inc.
 
    Parser actions based on the old Bison parser; structure somewhat
    influenced by and fragments based on the C++ parser.
@@ -185,11 +185,13 @@ c_parser_next_token_is_keyword (c_parser *parser, enum rid keyword)
   return c_parser_peek_token (parser)->keyword == keyword;
 }
 
+struct c_expr c_parser_string_literal (c_parser *, bool, bool);
 extern struct c_declarator *
 c_parser_declarator (c_parser *parser, bool type_seen_p, c_dtr_syn kind,
                     bool *seen_id);
 extern void c_parser_declspecs (c_parser *, struct c_declspecs *, bool, bool,
-                               bool, bool, bool, enum c_lookahead_kind);
+                               bool, bool, bool, bool, bool,
+                               enum c_lookahead_kind);
 extern struct c_type_name *c_parser_type_name (c_parser *, bool = false);
 
 #endif