Prettier output and some fixes (#4)
* feat: tab results * feat: more colors * style: norm * fix: patch a spacing bug * fix: patch a small issue * fix: patch some leaks * style: norm
This commit is contained in:
@@ -16,7 +16,7 @@ void ft_bzero(void *s, size_t n)
|
||||
{
|
||||
while (n > 0)
|
||||
{
|
||||
*((unsigned char *) s) = '\0';
|
||||
*((unsigned char *)s) = '\0';
|
||||
s++;
|
||||
n--;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user