Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 6411 → Rev 6412

/programs/develop/ktcc/trunk/libc/string/strrev.c
0,0 → 1,12
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;
}