├── .github └── ISSUE_TEMPLATE │ ├── bug-report-prinf.md │ ├── custom.md │ └── feature_request.md ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── _printf.c ├── _putchar.c ├── _puts.c ├── driver.c ├── holberton.h ├── main.c ├── man_3_printf ├── printc.c ├── printhex.c ├── printint.c ├── printocta.c ├── printpercent.c └── printstr.c /.github/ISSUE_TEMPLATE/bug-report-prinf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camilooob/printf/HEAD/.github/ISSUE_TEMPLATE/bug-report-prinf.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/custom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camilooob/printf/HEAD/.github/ISSUE_TEMPLATE/custom.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camilooob/printf/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camilooob/printf/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camilooob/printf/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | 2 | =D 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camilooob/printf/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camilooob/printf/HEAD/README.md -------------------------------------------------------------------------------- /_printf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camilooob/printf/HEAD/_printf.c -------------------------------------------------------------------------------- /_putchar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camilooob/printf/HEAD/_putchar.c -------------------------------------------------------------------------------- /_puts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camilooob/printf/HEAD/_puts.c -------------------------------------------------------------------------------- /driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camilooob/printf/HEAD/driver.c -------------------------------------------------------------------------------- /holberton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camilooob/printf/HEAD/holberton.h -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camilooob/printf/HEAD/main.c -------------------------------------------------------------------------------- /man_3_printf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camilooob/printf/HEAD/man_3_printf -------------------------------------------------------------------------------- /printc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camilooob/printf/HEAD/printc.c -------------------------------------------------------------------------------- /printhex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camilooob/printf/HEAD/printhex.c -------------------------------------------------------------------------------- /printint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camilooob/printf/HEAD/printint.c -------------------------------------------------------------------------------- /printocta.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camilooob/printf/HEAD/printocta.c -------------------------------------------------------------------------------- /printpercent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camilooob/printf/HEAD/printpercent.c -------------------------------------------------------------------------------- /printstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camilooob/printf/HEAD/printstr.c --------------------------------------------------------------------------------