ft_calloc(). Norminette
This commit is contained in:
parent
41ed119416
commit
d64354612b
9 changed files with 154 additions and 27 deletions
|
|
@ -6,7 +6,7 @@
|
|||
/* By: lalgarra <lalgarra@student.42madrid.com> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2025/10/03 18:27:44 by lalgarra #+# #+# */
|
||||
/* Updated: 2025/10/04 12:15:34 by lalgarra ### ########.fr */
|
||||
/* Updated: 2025/10/05 13:35:06 by lalgarra ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
|
|
@ -16,11 +16,11 @@
|
|||
|
||||
void do_test(const char *buff)
|
||||
{
|
||||
printf("ft_strlen(\"%s\"): %lu; strlen(): %lu; are equal: %i\r\n",
|
||||
printf("ft_strlen(\"%s\"): %lu; strlen(): %lu; are equal: %i\r\n",
|
||||
buff, ft_strlen(buff), strlen(buff), ft_strlen(buff) == strlen(buff));
|
||||
}
|
||||
|
||||
int main(void)
|
||||
int main(void)
|
||||
{
|
||||
char buff[255];
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue