document scan_urlencoded2
This commit is contained in:
parent
f7809e36df
commit
f8d16ad407
2
CHANGES
2
CHANGES
@ -2,6 +2,8 @@
|
|||||||
uh, the scope_id detection #defined the wrong constant. libowfat
|
uh, the scope_id detection #defined the wrong constant. libowfat
|
||||||
always thought there was no scope_id. Oops.
|
always thought there was no scope_id. Oops.
|
||||||
#include <unistd.h> in io/io_sendfile.c (broken OpenBSD, thx Rob)
|
#include <unistd.h> in io/io_sendfile.c (broken OpenBSD, thx Rob)
|
||||||
|
add scan_urlencoded2 (like scan_urlencoded but will not convert '+' to
|
||||||
|
' '; needed for web servers, so they can serve libstdc++.tar.gz)
|
||||||
|
|
||||||
0.21:
|
0.21:
|
||||||
errno cleanup and man page updates (Rolf Eike Beer)
|
errno cleanup and man page updates (Rolf Eike Beer)
|
||||||
|
4
t.c
4
t.c
@ -25,6 +25,10 @@
|
|||||||
__asm__ __volatile__ ("rdtsc" : "=a" (low) : : "edx")
|
__asm__ __volatile__ ("rdtsc" : "=a" (low) : : "edx")
|
||||||
|
|
||||||
int main(int argc,char* argv[]) {
|
int main(int argc,char* argv[]) {
|
||||||
|
char dest[1024];
|
||||||
|
unsigned long len;
|
||||||
|
scan_urlencoded2("libstdc++.tar.gz",dest,&len);
|
||||||
|
buffer_putmflush(buffer_1,dest,"\n");
|
||||||
#if 0
|
#if 0
|
||||||
static stralloc sa;
|
static stralloc sa;
|
||||||
stralloc_copym(&sa,"foo ","bar ","baz.\n");
|
stralloc_copym(&sa,"foo ","bar ","baz.\n");
|
||||||
|
Loading…
x
Reference in New Issue
Block a user