├── .gitignore ├── LICENSE.txt ├── ReadMe.md ├── doc ├── Examples.md ├── HistoricalContext.md ├── ManPage.md ├── MicroManPage.md ├── TestedPlatforms.md └── TinyManPage.md ├── example └── lcd.c ├── lib ├── README.txt ├── printf.c ├── printf.h ├── snprintf.c └── sprintf.c ├── src ├── format.c ├── format.h ├── format_config.h ├── format_fp.c ├── microformat.c ├── microformat.h └── tinyformat.c └── test ├── Makefile ├── libtest.c ├── microtestharness.c ├── performance.c ├── testharness.c └── tinytestharness.c /.gitignore: -------------------------------------------------------------------------------- 1 | /.project 2 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nejohnson/format/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nejohnson/format/HEAD/ReadMe.md -------------------------------------------------------------------------------- /doc/Examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nejohnson/format/HEAD/doc/Examples.md -------------------------------------------------------------------------------- /doc/HistoricalContext.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nejohnson/format/HEAD/doc/HistoricalContext.md -------------------------------------------------------------------------------- /doc/ManPage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nejohnson/format/HEAD/doc/ManPage.md -------------------------------------------------------------------------------- /doc/MicroManPage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nejohnson/format/HEAD/doc/MicroManPage.md -------------------------------------------------------------------------------- /doc/TestedPlatforms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nejohnson/format/HEAD/doc/TestedPlatforms.md -------------------------------------------------------------------------------- /doc/TinyManPage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nejohnson/format/HEAD/doc/TinyManPage.md -------------------------------------------------------------------------------- /example/lcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nejohnson/format/HEAD/example/lcd.c -------------------------------------------------------------------------------- /lib/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nejohnson/format/HEAD/lib/README.txt -------------------------------------------------------------------------------- /lib/printf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nejohnson/format/HEAD/lib/printf.c -------------------------------------------------------------------------------- /lib/printf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nejohnson/format/HEAD/lib/printf.h -------------------------------------------------------------------------------- /lib/snprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nejohnson/format/HEAD/lib/snprintf.c -------------------------------------------------------------------------------- /lib/sprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nejohnson/format/HEAD/lib/sprintf.c -------------------------------------------------------------------------------- /src/format.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nejohnson/format/HEAD/src/format.c -------------------------------------------------------------------------------- /src/format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nejohnson/format/HEAD/src/format.h -------------------------------------------------------------------------------- /src/format_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nejohnson/format/HEAD/src/format_config.h -------------------------------------------------------------------------------- /src/format_fp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nejohnson/format/HEAD/src/format_fp.c -------------------------------------------------------------------------------- /src/microformat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nejohnson/format/HEAD/src/microformat.c -------------------------------------------------------------------------------- /src/microformat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nejohnson/format/HEAD/src/microformat.h -------------------------------------------------------------------------------- /src/tinyformat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nejohnson/format/HEAD/src/tinyformat.c -------------------------------------------------------------------------------- /test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nejohnson/format/HEAD/test/Makefile -------------------------------------------------------------------------------- /test/libtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nejohnson/format/HEAD/test/libtest.c -------------------------------------------------------------------------------- /test/microtestharness.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nejohnson/format/HEAD/test/microtestharness.c -------------------------------------------------------------------------------- /test/performance.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nejohnson/format/HEAD/test/performance.c -------------------------------------------------------------------------------- /test/testharness.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nejohnson/format/HEAD/test/testharness.c -------------------------------------------------------------------------------- /test/tinytestharness.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nejohnson/format/HEAD/test/tinytestharness.c --------------------------------------------------------------------------------