├── .gitattributes ├── README.md ├── _printf.c ├── ev_print_func.c ├── fill_binary_array.c ├── fill_hex_array.c ├── fill_long_oct_array.c ├── fill_oct_array.c ├── fill_short_oct_array.c ├── get_print_func.c ├── handl_buf.c ├── main.h ├── man_3_printf ├── print_add.c ├── print_bnr.c ├── print_buf.c ├── print_chr.c ├── print_hex.c ├── print_int.c ├── print_long_hex.c ├── print_long_int.c ├── print_long_oct.c ├── print_long_unt.c ├── print_long_upx.c ├── print_num_hex.c ├── print_num_oct.c ├── print_num_upx.c ├── print_oct.c ├── print_plus_int.c ├── print_prg.c ├── print_rev.c ├── print_rot.c ├── print_short_hex.c ├── print_short_int.c ├── print_short_oct.c ├── print_short_unt.c ├── print_short_upx.c ├── print_space_int.c ├── print_str.c ├── print_unt.c ├── print_upx.c └── print_usr.c /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aysuarex/printf/HEAD/.gitattributes -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aysuarex/printf/HEAD/README.md -------------------------------------------------------------------------------- /_printf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aysuarex/printf/HEAD/_printf.c -------------------------------------------------------------------------------- /ev_print_func.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aysuarex/printf/HEAD/ev_print_func.c -------------------------------------------------------------------------------- /fill_binary_array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aysuarex/printf/HEAD/fill_binary_array.c -------------------------------------------------------------------------------- /fill_hex_array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aysuarex/printf/HEAD/fill_hex_array.c -------------------------------------------------------------------------------- /fill_long_oct_array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aysuarex/printf/HEAD/fill_long_oct_array.c -------------------------------------------------------------------------------- /fill_oct_array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aysuarex/printf/HEAD/fill_oct_array.c -------------------------------------------------------------------------------- /fill_short_oct_array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aysuarex/printf/HEAD/fill_short_oct_array.c -------------------------------------------------------------------------------- /get_print_func.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aysuarex/printf/HEAD/get_print_func.c -------------------------------------------------------------------------------- /handl_buf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aysuarex/printf/HEAD/handl_buf.c -------------------------------------------------------------------------------- /main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aysuarex/printf/HEAD/main.h -------------------------------------------------------------------------------- /man_3_printf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aysuarex/printf/HEAD/man_3_printf -------------------------------------------------------------------------------- /print_add.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aysuarex/printf/HEAD/print_add.c -------------------------------------------------------------------------------- /print_bnr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aysuarex/printf/HEAD/print_bnr.c -------------------------------------------------------------------------------- /print_buf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aysuarex/printf/HEAD/print_buf.c -------------------------------------------------------------------------------- /print_chr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aysuarex/printf/HEAD/print_chr.c -------------------------------------------------------------------------------- /print_hex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aysuarex/printf/HEAD/print_hex.c -------------------------------------------------------------------------------- /print_int.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aysuarex/printf/HEAD/print_int.c -------------------------------------------------------------------------------- /print_long_hex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aysuarex/printf/HEAD/print_long_hex.c -------------------------------------------------------------------------------- /print_long_int.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aysuarex/printf/HEAD/print_long_int.c -------------------------------------------------------------------------------- /print_long_oct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aysuarex/printf/HEAD/print_long_oct.c -------------------------------------------------------------------------------- /print_long_unt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aysuarex/printf/HEAD/print_long_unt.c -------------------------------------------------------------------------------- /print_long_upx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aysuarex/printf/HEAD/print_long_upx.c -------------------------------------------------------------------------------- /print_num_hex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aysuarex/printf/HEAD/print_num_hex.c -------------------------------------------------------------------------------- /print_num_oct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aysuarex/printf/HEAD/print_num_oct.c -------------------------------------------------------------------------------- /print_num_upx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aysuarex/printf/HEAD/print_num_upx.c -------------------------------------------------------------------------------- /print_oct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aysuarex/printf/HEAD/print_oct.c -------------------------------------------------------------------------------- /print_plus_int.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aysuarex/printf/HEAD/print_plus_int.c -------------------------------------------------------------------------------- /print_prg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aysuarex/printf/HEAD/print_prg.c -------------------------------------------------------------------------------- /print_rev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aysuarex/printf/HEAD/print_rev.c -------------------------------------------------------------------------------- /print_rot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aysuarex/printf/HEAD/print_rot.c -------------------------------------------------------------------------------- /print_short_hex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aysuarex/printf/HEAD/print_short_hex.c -------------------------------------------------------------------------------- /print_short_int.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aysuarex/printf/HEAD/print_short_int.c -------------------------------------------------------------------------------- /print_short_oct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aysuarex/printf/HEAD/print_short_oct.c -------------------------------------------------------------------------------- /print_short_unt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aysuarex/printf/HEAD/print_short_unt.c -------------------------------------------------------------------------------- /print_short_upx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aysuarex/printf/HEAD/print_short_upx.c -------------------------------------------------------------------------------- /print_space_int.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aysuarex/printf/HEAD/print_space_int.c -------------------------------------------------------------------------------- /print_str.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aysuarex/printf/HEAD/print_str.c -------------------------------------------------------------------------------- /print_unt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aysuarex/printf/HEAD/print_unt.c -------------------------------------------------------------------------------- /print_upx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aysuarex/printf/HEAD/print_upx.c -------------------------------------------------------------------------------- /print_usr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aysuarex/printf/HEAD/print_usr.c --------------------------------------------------------------------------------