aboutsummaryrefslogtreecommitdiff
path: root/src/mlibc/string/strinv.c
blob: 71f33556cd29f12c8c5272f7e6998a27d9a7e089 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <mlibc/string.h>

void strinv(char *str)
{
    size_t s_str = strlen(str);

    int iterations = (int) s_str / 2;
    for (int i = 0; i < iterations; i++) {
        char aux = str[i];
        str[i] = str[(s_str - i) - 1];
        str[(s_str - i) - 1] = aux;
    }
}