├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── pull_request_template.md └── workflows │ └── c-cpp.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SECURITY.md ├── ascii.ico ├── ascii.rc ├── headers └── ascii.h ├── makefile ├── src ├── ascii.c ├── ascii.h ├── main.c ├── renderer.cpp └── renderer.h └── test └── test.c /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManojTGN/AsciiTable/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManojTGN/AsciiTable/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManojTGN/AsciiTable/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/c-cpp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManojTGN/AsciiTable/HEAD/.github/workflows/c-cpp.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManojTGN/AsciiTable/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManojTGN/AsciiTable/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManojTGN/AsciiTable/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManojTGN/AsciiTable/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManojTGN/AsciiTable/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManojTGN/AsciiTable/HEAD/SECURITY.md -------------------------------------------------------------------------------- /ascii.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManojTGN/AsciiTable/HEAD/ascii.ico -------------------------------------------------------------------------------- /ascii.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManojTGN/AsciiTable/HEAD/ascii.rc -------------------------------------------------------------------------------- /headers/ascii.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManojTGN/AsciiTable/HEAD/headers/ascii.h -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManojTGN/AsciiTable/HEAD/makefile -------------------------------------------------------------------------------- /src/ascii.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManojTGN/AsciiTable/HEAD/src/ascii.c -------------------------------------------------------------------------------- /src/ascii.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManojTGN/AsciiTable/HEAD/src/ascii.h -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManojTGN/AsciiTable/HEAD/src/main.c -------------------------------------------------------------------------------- /src/renderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManojTGN/AsciiTable/HEAD/src/renderer.cpp -------------------------------------------------------------------------------- /src/renderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManojTGN/AsciiTable/HEAD/src/renderer.h -------------------------------------------------------------------------------- /test/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManojTGN/AsciiTable/HEAD/test/test.c --------------------------------------------------------------------------------