percent-encode the query parts of a request too, not only the path.
[Rockbox.git] / firmware / common / strcat.c
blobe3366d740522c27ee614713efaf99cf78cecea4e
1 char *strcat(char *s1,
2 const char *s2)
4 char *s = s1;
6 while (*s1)
7 s1++;
9 while ((*s1++ = *s2++))
11 return s;