- Move source code from `trunk` into program root directory. - Update build files and include paths. - Note: Line endings standardised from `CRLF` > `LF`, so best to view diffs with whitespace changes hidden.
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;
|
|
}
|
|
|