add: ft_write

This commit is contained in:
2024-09-02 17:22:08 +02:00
parent 5bccb1efc6
commit 054e31a020
3 changed files with 13 additions and 1 deletions

View File

@ -76,4 +76,6 @@ int main()
const char *strcpy_tests[] = {"yo", "", "bonjour", "co\0fgf", NULL};
multiple_test_strcpy(ft_strcpy, strcpy_tests);
printf("\n");
ft_write(1, "bozo\n", 5);
}