aboutsummaryrefslogtreecommitdiff
path: root/src/userspace/libc/string/strinv.c
blob: 261e57e4b2cc2c9eda5c7d240f70635d8ce69c35 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <stdint.h>
#include <string.h>

void strinv(char *str)
{
	u32 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;
	}
}