├── .vscode └── settings.json ├── Dockerfile ├── Makefile ├── README.md ├── p_test ├── tests ├── +_test.cpp ├── 0_test.cpp ├── c_test.cpp ├── d_test.cpp ├── dot_test.cpp ├── i_test.cpp ├── minus_test.cpp ├── mix_test.cpp ├── p_test.cpp ├── percent_test.cpp ├── s_test.cpp ├── sharp_test.cpp ├── space_test.cpp ├── u_test.cpp ├── upperx_test.cpp └── x_test.cpp └── utils ├── check.cpp ├── check.hpp ├── color.cpp ├── color.hpp ├── leaks.cpp ├── leaks.hpp ├── print.hpp ├── sigsegv.cpp └── sigsegv.hpp /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "files.associations": { 3 | "iostream": "cpp" 4 | } 5 | } -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tripouille/printfTester/HEAD/Dockerfile -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tripouille/printfTester/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tripouille/printfTester/HEAD/README.md -------------------------------------------------------------------------------- /p_test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tripouille/printfTester/HEAD/p_test -------------------------------------------------------------------------------- /tests/+_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tripouille/printfTester/HEAD/tests/+_test.cpp -------------------------------------------------------------------------------- /tests/0_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tripouille/printfTester/HEAD/tests/0_test.cpp -------------------------------------------------------------------------------- /tests/c_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tripouille/printfTester/HEAD/tests/c_test.cpp -------------------------------------------------------------------------------- /tests/d_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tripouille/printfTester/HEAD/tests/d_test.cpp -------------------------------------------------------------------------------- /tests/dot_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tripouille/printfTester/HEAD/tests/dot_test.cpp -------------------------------------------------------------------------------- /tests/i_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tripouille/printfTester/HEAD/tests/i_test.cpp -------------------------------------------------------------------------------- /tests/minus_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tripouille/printfTester/HEAD/tests/minus_test.cpp -------------------------------------------------------------------------------- /tests/mix_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tripouille/printfTester/HEAD/tests/mix_test.cpp -------------------------------------------------------------------------------- /tests/p_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tripouille/printfTester/HEAD/tests/p_test.cpp -------------------------------------------------------------------------------- /tests/percent_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tripouille/printfTester/HEAD/tests/percent_test.cpp -------------------------------------------------------------------------------- /tests/s_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tripouille/printfTester/HEAD/tests/s_test.cpp -------------------------------------------------------------------------------- /tests/sharp_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tripouille/printfTester/HEAD/tests/sharp_test.cpp -------------------------------------------------------------------------------- /tests/space_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tripouille/printfTester/HEAD/tests/space_test.cpp -------------------------------------------------------------------------------- /tests/u_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tripouille/printfTester/HEAD/tests/u_test.cpp -------------------------------------------------------------------------------- /tests/upperx_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tripouille/printfTester/HEAD/tests/upperx_test.cpp -------------------------------------------------------------------------------- /tests/x_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tripouille/printfTester/HEAD/tests/x_test.cpp -------------------------------------------------------------------------------- /utils/check.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tripouille/printfTester/HEAD/utils/check.cpp -------------------------------------------------------------------------------- /utils/check.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tripouille/printfTester/HEAD/utils/check.hpp -------------------------------------------------------------------------------- /utils/color.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tripouille/printfTester/HEAD/utils/color.cpp -------------------------------------------------------------------------------- /utils/color.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tripouille/printfTester/HEAD/utils/color.hpp -------------------------------------------------------------------------------- /utils/leaks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tripouille/printfTester/HEAD/utils/leaks.cpp -------------------------------------------------------------------------------- /utils/leaks.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tripouille/printfTester/HEAD/utils/leaks.hpp -------------------------------------------------------------------------------- /utils/print.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tripouille/printfTester/HEAD/utils/print.hpp -------------------------------------------------------------------------------- /utils/sigsegv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tripouille/printfTester/HEAD/utils/sigsegv.cpp -------------------------------------------------------------------------------- /utils/sigsegv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tripouille/printfTester/HEAD/utils/sigsegv.hpp --------------------------------------------------------------------------------