aboutsummaryrefslogtreecommitdiff
path: root/exam00/subjects/3-0-ft_putstr/subject.en.txt
diff options
context:
space:
mode:
Diffstat (limited to 'exam00/subjects/3-0-ft_putstr/subject.en.txt')
-rw-r--r--exam00/subjects/3-0-ft_putstr/subject.en.txt13
1 files changed, 13 insertions, 0 deletions
diff --git a/exam00/subjects/3-0-ft_putstr/subject.en.txt b/exam00/subjects/3-0-ft_putstr/subject.en.txt
new file mode 100644
index 0000000..243e4d8
--- /dev/null
+++ b/exam00/subjects/3-0-ft_putstr/subject.en.txt
@@ -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);