ft_bzero()

This commit is contained in:
Leonardo Algarra 2025-10-04 16:41:59 +02:00
parent a60d1e1a87
commit 78e40cde0d
3 changed files with 63 additions and 4 deletions

5
ft_bzero_expected.output Normal file
View file

@ -0,0 +1,5 @@
buff: "Iorem ipsum dolor", n=0; after call: buff: "Iorem ipsum dolor", n=0;
buff: "Iorem ipsum dolor", n=3; after call: buff: "", n=3;
buff: "Iorem ipsum dolor", n=3; after call: buff: "", n=3;
buff: "Iorem ipsum dolor", n=16; after call: buff: "", n=16;
buff: "Iorem ipsum dolor", n=17; after call: buff: "", n=17;