<feed xmlns='http://www.w3.org/2005/Atom'>
<title>ft_printf.git/utils.c, branch master</title>
<subtitle>School project: Rewritting ft_printf function
</subtitle>
<link rel='alternate' type='text/html' href='https://git.cacharle.com/ft_printf.git/'/>
<entry>
<title>ft_printf write to buffer instead of instant write</title>
<updated>2019-11-13T08:00:43+00:00</updated>
<author>
<name>Charles</name>
<email>sircharlesaze@gmail.com</email>
</author>
<published>2019-11-10T09:37:51+00:00</published>
<link rel='alternate' type='text/html' href='https://git.cacharle.com/ft_printf.git/commit/?id=3f2ef05278d42233f0a9ee9652e152824a7103e4'/>
<id>3f2ef05278d42233f0a9ee9652e152824a7103e4</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Refactored parsing to handle alone '%'</title>
<updated>2019-11-05T23:02:56+00:00</updated>
<author>
<name>Charles</name>
<email>sircharlesaze@gmail.com</email>
</author>
<published>2019-11-05T23:02:56+00:00</published>
<link rel='alternate' type='text/html' href='https://git.cacharle.com/ft_printf.git/commit/?id=dafee6410a4ecd7400a83adf84ded3621f30a365'/>
<id>dafee6410a4ecd7400a83adf84ded3621f30a365</id>
<content type='text'>
- renamed a few variables
- added join_free* to libft
- normed everything but ft_printf.c
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- renamed a few variables
- added join_free* to libft
- normed everything but ft_printf.c
</pre>
</div>
</content>
</entry>
<entry>
<title>Normed converters</title>
<updated>2019-10-30T22:35:40+00:00</updated>
<author>
<name>Charles</name>
<email>sircharlesaze@gmail.com</email>
</author>
<published>2019-10-30T22:35:40+00:00</published>
<link rel='alternate' type='text/html' href='https://git.cacharle.com/ft_printf.git/commit/?id=d63d6916249f5b40b81097854d8ca2c9d4d7d071'/>
<id>d63d6916249f5b40b81097854d8ca2c9d4d7d071</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fixed %d segfault, merge hex_* in hex, fixed c = 0</title>
<updated>2019-10-30T17:07:21+00:00</updated>
<author>
<name>Charles</name>
<email>sircharlesaze@gmail.com</email>
</author>
<published>2019-10-30T17:07:21+00:00</published>
<link rel='alternate' type='text/html' href='https://git.cacharle.com/ft_printf.git/commit/?id=22f334a19cabebf10727d7894102946ba23d0e37'/>
<id>22f334a19cabebf10727d7894102946ba23d0e37</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Added flags for x and X</title>
<updated>2019-10-30T03:58:00+00:00</updated>
<author>
<name>Charles</name>
<email>sircharlesaze@gmail.com</email>
</author>
<published>2019-10-30T03:58:00+00:00</published>
<link rel='alternate' type='text/html' href='https://git.cacharle.com/ft_printf.git/commit/?id=001786c8ec464b1ae3e6321acfd984227cb1bbee'/>
<id>001786c8ec464b1ae3e6321acfd984227cb1bbee</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Individual convert functions, more flags</title>
<updated>2019-10-30T02:57:47+00:00</updated>
<author>
<name>Charles</name>
<email>sircharlesaze@gmail.com</email>
</author>
<published>2019-10-30T02:57:47+00:00</published>
<link rel='alternate' type='text/html' href='https://git.cacharle.com/ft_printf.git/commit/?id=d963161275bcb3af4097872ba033da3ff9255606'/>
<id>d963161275bcb3af4097872ba033da3ff9255606</id>
<content type='text'>
- Each conversion type is handle by individual functions in convert_*
  files
- handle the ' ', '#', '+' and length modifier flags.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- Each conversion type is handle by individual functions in convert_*
  files
- handle the ' ', '#', '+' and length modifier flags.
</pre>
</div>
</content>
</entry>
<entry>
<title>Reworking, binary flags, extract advance</title>
<updated>2019-10-29T01:02:09+00:00</updated>
<author>
<name>Charles</name>
<email>sircharlesaze@gmail.com</email>
</author>
<published>2019-10-29T00:57:41+00:00</published>
<link rel='alternate' type='text/html' href='https://git.cacharle.com/ft_printf.git/commit/?id=87bce91050b56915dcf5964f6f66d5f47299e7f3'/>
<id>87bce91050b56915dcf5964f6f66d5f47299e7f3</id>
<content type='text'>
- 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
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- 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
</pre>
</div>
</content>
</entry>
<entry>
<title>WIP: Added libft submodule, make ft_printf lib</title>
<updated>2019-10-25T02:42:08+00:00</updated>
<author>
<name>Charles</name>
<email>sircharlesaze@gmail.com</email>
</author>
<published>2019-10-25T02:42:08+00:00</published>
<link rel='alternate' type='text/html' href='https://git.cacharle.com/ft_printf.git/commit/?id=feb71e200972bb78fe86130629ef040ef80811a7'/>
<id>feb71e200972bb78fe86130629ef040ef80811a7</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Parsing rewrite</title>
<updated>2019-10-15T11:02:53+00:00</updated>
<author>
<name>Charles</name>
<email>sircharlesaze@gmail.com</email>
</author>
<published>2019-10-15T11:02:53+00:00</published>
<link rel='alternate' type='text/html' href='https://git.cacharle.com/ft_printf.git/commit/?id=fa4bf89263e897695dbf48061369a23d695fef8b'/>
<id>fa4bf89263e897695dbf48061369a23d695fef8b</id>
<content type='text'>
- 4 extraction functions which parse some format attributes
  and remove them.
- Not handling wildcard yet
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- 4 extraction functions which parse some format attributes
  and remove them.
- Not handling wildcard yet
</pre>
</div>
</content>
</entry>
<entry>
<title>WIP parsing flags, happy path</title>
<updated>2019-10-12T13:47:43+00:00</updated>
<author>
<name>Charles</name>
<email>sircharlesaze@gmail.com</email>
</author>
<published>2019-10-12T13:47:43+00:00</published>
<link rel='alternate' type='text/html' href='https://git.cacharle.com/ft_printf.git/commit/?id=1531206a1e5545824d76bf7a73249d6be9237c67'/>
<id>1531206a1e5545824d76bf7a73249d6be9237c67</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
