diff options
| author | Charles <sircharlesaze@gmail.com> | 2019-07-24 18:57:19 +0200 |
|---|---|---|
| committer | Charles <sircharlesaze@gmail.com> | 2019-07-24 18:57:19 +0200 |
| commit | 475449dd4b1f3308bac6f72c34d87812216a0738 (patch) | |
| tree | 319a76f0e87b041818156f2d1dfbbc6a7dfacf06 /exam02/rendu/ft_strrev | |
| parent | 83edb77d74bb339f3e1324a51039c78ac503db90 (diff) | |
| download | piscine-475449dd4b1f3308bac6f72c34d87812216a0738.tar.gz piscine-475449dd4b1f3308bac6f72c34d87812216a0738.tar.bz2 piscine-475449dd4b1f3308bac6f72c34d87812216a0738.zip | |
exam02
Diffstat (limited to 'exam02/rendu/ft_strrev')
| -rwxr-xr-x | exam02/rendu/ft_strrev/ft_strrev.c | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/exam02/rendu/ft_strrev/ft_strrev.c b/exam02/rendu/ft_strrev/ft_strrev.c new file mode 100755 index 0000000..c58bc25 --- /dev/null +++ b/exam02/rendu/ft_strrev/ft_strrev.c @@ -0,0 +1,33 @@ +/* ************************************************************************** */ +/* */ +/* ::: :::::::: */ +/* ft_strrev.c :+: :+: :+: */ +/* +:+ +:+ +:+ */ +/* By: exam <marvin@42.fr> +#+ +:+ +#+ */ +/* +#+#+#+#+#+ +#+ */ +/* Created: 2019/07/19 17:08:38 by exam #+# #+# */ +/* Updated: 2019/07/19 17:18:13 by exam ### ########.fr */ +/* */ +/* ************************************************************************** */ + +char *ft_strrev(char *str) +{ + int i; + int j; + char tmp; + + i = 0; + j = 0; + while (str[j]) + j++; + j--; + while (i < j) + { + tmp = str[i]; + str[i] = str[j]; + str[j] = tmp; + j--; + i++; + } + return (str); +} |
