aboutsummaryrefslogtreecommitdiff
path: root/exam00/subjects/4-0-ft_strrev/subject.en.txt
diff options
context:
space:
mode:
Diffstat (limited to 'exam00/subjects/4-0-ft_strrev/subject.en.txt')
-rw-r--r--exam00/subjects/4-0-ft_strrev/subject.en.txt12
1 files changed, 12 insertions, 0 deletions
diff --git a/exam00/subjects/4-0-ft_strrev/subject.en.txt b/exam00/subjects/4-0-ft_strrev/subject.en.txt
new file mode 100644
index 0000000..6c31580
--- /dev/null
+++ b/exam00/subjects/4-0-ft_strrev/subject.en.txt
@@ -0,0 +1,12 @@
+Assignment name : ft_strrev
+Expected files : ft_strrev.c
+Allowed functions:
+--------------------------------------------------------------------------------
+
+Write a function that reverses a string by modifying it.
+
+It must return its parameter.
+
+Your function must be declared as follows:
+
+char *ft_strrev(char *str);