├── .gitignore ├── COPYING ├── Makefile.am ├── README.md ├── autogen.sh ├── configure.ac ├── doc ├── Doxyfile ├── footer.html └── intro.dox ├── examples ├── Makefile.am ├── array.c ├── array.template ├── simple.c └── simple.template ├── mustache_c-1.0.pc.in ├── src ├── Makefile.am ├── mustache-internal.h ├── mustache.c ├── mustache.h ├── parser.l └── parser.y └── test ├── Makefile.am └── test.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x86-64/mustache-c/HEAD/.gitignore -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x86-64/mustache-c/HEAD/COPYING -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x86-64/mustache-c/HEAD/Makefile.am -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x86-64/mustache-c/HEAD/README.md -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x86-64/mustache-c/HEAD/autogen.sh -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x86-64/mustache-c/HEAD/configure.ac -------------------------------------------------------------------------------- /doc/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x86-64/mustache-c/HEAD/doc/Doxyfile -------------------------------------------------------------------------------- /doc/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x86-64/mustache-c/HEAD/doc/footer.html -------------------------------------------------------------------------------- /doc/intro.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x86-64/mustache-c/HEAD/doc/intro.dox -------------------------------------------------------------------------------- /examples/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x86-64/mustache-c/HEAD/examples/Makefile.am -------------------------------------------------------------------------------- /examples/array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x86-64/mustache-c/HEAD/examples/array.c -------------------------------------------------------------------------------- /examples/array.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x86-64/mustache-c/HEAD/examples/array.template -------------------------------------------------------------------------------- /examples/simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x86-64/mustache-c/HEAD/examples/simple.c -------------------------------------------------------------------------------- /examples/simple.template: -------------------------------------------------------------------------------- 1 | Hello World to {{name}}! 2 | -------------------------------------------------------------------------------- /mustache_c-1.0.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x86-64/mustache-c/HEAD/mustache_c-1.0.pc.in -------------------------------------------------------------------------------- /src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x86-64/mustache-c/HEAD/src/Makefile.am -------------------------------------------------------------------------------- /src/mustache-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x86-64/mustache-c/HEAD/src/mustache-internal.h -------------------------------------------------------------------------------- /src/mustache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x86-64/mustache-c/HEAD/src/mustache.c -------------------------------------------------------------------------------- /src/mustache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x86-64/mustache-c/HEAD/src/mustache.h -------------------------------------------------------------------------------- /src/parser.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x86-64/mustache-c/HEAD/src/parser.l -------------------------------------------------------------------------------- /src/parser.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x86-64/mustache-c/HEAD/src/parser.y -------------------------------------------------------------------------------- /test/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x86-64/mustache-c/HEAD/test/Makefile.am -------------------------------------------------------------------------------- /test/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x86-64/mustache-c/HEAD/test/test.c --------------------------------------------------------------------------------