FrontC icon indicating copy to clipboard operation
FrontC copied to clipboard

An OCaml library providing a C parser and lexer

Results 5 FrontC issues
Sort by recently updated
recently updated
newest added

```console $ dune.build File "frontc/cxml.ml", line 43, characters 19-20: Error: Syntax error ``` This is because of this code bit: https://github.com/BinaryAnalysisPlatform/FrontC/blob/c95d785d9e440827d65a904544495194ad8a40a9/frontc/cxml.ml#L42-L59

Hi, I recently came to learn the existence of another FrontC repository maintained by the TRACES team/University of Toulouse, the original authors (Hugues Cassé). The repository lives at https://git.renater.fr/anonscm/git/orange/Frontc.git (project...

Adding these ppx instances allows for better compatibility with Core.

question

Using calipso/FrontC 4.0.0 on Fedora34: ``` cat >x.c

The following parses fine: ```c struct foo { unsigned int bf : 1; }; ``` but this does not: ```c typedef unsigned int uint; struct foo { uint bf :...