├── .travis.yml ├── LICENSE ├── README.md ├── fmt11.cxx └── fmt11.hpp /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lyeh-archived/fmt11/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lyeh-archived/fmt11/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lyeh-archived/fmt11/HEAD/README.md -------------------------------------------------------------------------------- /fmt11.cxx: -------------------------------------------------------------------------------- 1 | #define FMT11_BUILD_DEMO 2 | #include "fmt11.hpp" 3 | -------------------------------------------------------------------------------- /fmt11.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lyeh-archived/fmt11/HEAD/fmt11.hpp --------------------------------------------------------------------------------