mirror of /home/gitosis/repositories/libowfat.git
Mirror of :pserver:cvs@cvs.fefe.de:/cvs libowfat
https://www.fefe.de/libowfat/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
894 B
33 lines
894 B
#include "fmt.h" |
|
#include "textcode.h" |
|
#include "scan.h" |
|
|
|
static unsigned long inner_scan_urlencoded(const char *src,char *dest,unsigned long *destlen,int plus) { |
|
register const unsigned char* s=(const unsigned char*) src; |
|
unsigned long written=0,i; |
|
for (i=0; s[i]; ++i) { |
|
if (s[i]=='%') { |
|
int j=scan_fromhex(s[i+1]); |
|
if (j<0) break; |
|
dest[written]=j<<4; |
|
j=scan_fromhex(s[i+2]); |
|
if (j<0) break; |
|
dest[written]|=j; |
|
i+=2; |
|
} else if (s[i]=='+' && plus) |
|
dest[written]=' '; |
|
else |
|
dest[written]=s[i]; |
|
++written; |
|
} |
|
*destlen=written; |
|
return i; |
|
} |
|
|
|
unsigned long scan_urlencoded(const char *src,char *dest,unsigned long *destlen) { |
|
return inner_scan_urlencoded(src,dest,destlen,1); |
|
} |
|
|
|
unsigned long scan_urlencoded2(const char *src,char *dest,unsigned long *destlen) { |
|
return inner_scan_urlencoded(src,dest,destlen,0); |
|
}
|
|
|