jhjourdan / C11parser

A correct C89/C90/C99/C11/C18 parser written using Menhir and OCaml
Other
192 stars 17 forks source link

Document which, if any, common gcc and clang extensions are supported #15

Closed magnusjonsson closed 5 years ago

magnusjonsson commented 5 years ago

See https://gcc.gnu.org/onlinedocs/gcc/C-Extensions.html#C-Extensions

I would be particularly interested in "Statement Exprs" and "Other Builtins".

jhjourdan commented 5 years ago

None are supported. As said in the README file, this is a compliant ISO C parser. Nothing more, nothing less.

magnusjonsson commented 5 years ago

Thanks!