aboutsummaryrefslogtreecommitdiff
path: root/Makefile
AgeCommit message (Collapse)Author
2019-11-14Fixed little memory leak in handle_precisionHEADmasterCharles
2019-11-13Removed double, normedCharles
2019-11-13ft_printf write to buffer instead of instant writeCharles
2019-11-06Refactored parsing to handle alone '%'Charles
- renamed a few variables - added join_free* to libft - normed everything but ft_printf.c
2019-10-31Handle 'n' flagCharles
2019-10-30Normed convertersCharles
2019-10-30Fixed %d segfault, merge hex_* in hex, fixed c = 0Charles
2019-10-30Individual convert functions, more flagsCharles
- Each conversion type is handle by individual functions in convert_* files - handle the ' ', '#', '+' and length modifier flags.
2019-10-29Reworking, binary flags, extract advanceCharles
- Binary flags attribute instead of multiple bool - Extract doesnst strdup fmt each time, just advance the current pointer - In parsing push front then reverse - Moved some functions to libf
2019-10-25WIP: Added libft submodule, make ft_printf libCharles
2019-10-15Wildcard handlingCharles
Back where I was before rewrite
2019-10-15Parsing rewriteCharles
- 4 extraction functions which parse some format attributes and remove them. - Not handling wildcard yet
2019-10-13Added precisionCharles
For integral numbers, min width For strings, max len
2019-10-12Basic conversion parsingCharles
Using a list to store each format conversion informations.
2019-10-11Added and renamed filesCharles
2019-10-09Added hexdecimal supportCabergs Charles
2019-10-08Added Makefile, ft_printf templateCharles