├── .gitignore ├── COPYING ├── README └── src ├── example.c ├── fcpp.c └── fcpp.h /.gitignore: -------------------------------------------------------------------------------- 1 | fcpp 2 | *.o 3 | *~ 4 | -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Celtoys/fcpp/HEAD/COPYING -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Celtoys/fcpp/HEAD/README -------------------------------------------------------------------------------- /src/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Celtoys/fcpp/HEAD/src/example.c -------------------------------------------------------------------------------- /src/fcpp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Celtoys/fcpp/HEAD/src/fcpp.c -------------------------------------------------------------------------------- /src/fcpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Celtoys/fcpp/HEAD/src/fcpp.h --------------------------------------------------------------------------------