You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
799 B
C
34 lines
799 B
C
22 years ago
|
#include "fmt.h"
|
||
|
#include "stralloc.h"
|
||
|
#include "textcode.h"
|
||
|
#include "haveinline.h"
|
||
|
|
||
|
static inline int fromhex(char c) {
|
||
|
if (c>='0' && c<='9') return c-'0';
|
||
|
if (c>='A' && c<='F') return c-'A'+10;
|
||
|
if (c>='a' && c<='f') return c-'a'+10;
|
||
|
return -1;
|
||
|
}
|
||
|
|
||
|
int scan_urlencoded_sa(const char *src, stralloc *sa) {
|
||
|
register const unsigned char* s=(const unsigned char*) src;
|
||
|
unsigned long i;
|
||
|
for (i=0; s[i]; ++i) {
|
||
|
if (s[i]=='%') {
|
||
|
char dest;
|
||
|
int j=fromhex(s[i+1]);
|
||
|
if (j<0) break;
|
||
|
dest=j<<4;
|
||
|
j=fromhex(s[i+2]);
|
||
|
if (j<0) break;
|
||
|
dest|=j;
|
||
|
i+=2;
|
||
|
if (!stralloc_catb(sa, &dest, 1)) return 0;
|
||
|
} else if (s[i]=='+') {
|
||
|
if (!stralloc_catb(sa," ",1)) return 0;
|
||
|
} else
|
||
|
if (!stralloc_catb(sa,s+i,1)) return 0;
|
||
|
}
|
||
|
return 1;
|
||
|
}
|