mirror of
https://github.com/KolibriOS/kolibrios.git
synced 2024-12-17 12:22:35 +03:00
15 lines
213 B
C
15 lines
213 B
C
![]() |
#include <string.h>
|
||
|
|
||
|
char* strrev(char *p)
|
||
|
{
|
||
|
char *q = p, *res = p, z;
|
||
|
while(q && *q) ++q; /* find eos */
|
||
|
for(--q; p < q; ++p, --q)
|
||
|
{
|
||
|
z = *p;
|
||
|
*p = *q;
|
||
|
*q = z;
|
||
|
}
|
||
|
return res;
|
||
|
}
|
||
|
|