1
0
This repository has been archived on 2024-10-25. You can view files and clone it, but cannot push or open issues or pull requests.
Files
42-1st-piscine/ended/C03-corr/ex04/ft_strstr.c
2023-08-06 20:12:38 +02:00

6 lines
83 B
C

#include <stdio.h>
int main(void)
{
printf("%s", ft_strstr("fffff lll", "ll"));
}