This commit is contained in:
Tanguy MAZE
2019-06-22 18:23:35 +02:00
commit f9e508d5ef
173 changed files with 6727 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
Assignment name : ft_putstr
Expected files : ft_putstr.c
Allowed functions: write
--------------------------------------------------------------------------------
Write a function that displays a string on the standard output.
The pointer passed to the function contains the address of the string's first
character.
Your function must be declared as follows:
void ft_putstr(char *str);

View File

@@ -0,0 +1,12 @@
Assignment name : ft_putstr
Expected files : ft_putstr.c
Allowed functions: write
--------------------------------------------------------------------------------
Écrire une fonction qui affiche une chaîne de caractères sur la sortie standard.
Le pointeur passé à la fonction est l'adresse du premier caractère de la chaîne.
Elle devra être prototypée de la façon suivante :
void ft_putstr(char *str);

View File

@@ -0,0 +1,12 @@
Exercitiu : ft_putstr
Fisiere de iesire : ft_putstr.c
Functii autorizate : write
--------------------------------------------------------------------------------
Scrieti o functie ce afiseaza un sir de caractere la iesirea standard.
Pointerul catre functie este adresa primului caracter al sirului.
Ea trebuie sa aiba prototipul urmator:
void ft_putstr(char *str);