From 6f402e2d2f052972886712f60d592684c8671982 Mon Sep 17 00:00:00 2001 From: epoch Date: Sat, 20 Apr 2019 05:32:27 -0500 Subject: rebased on an old copy of this repo. renamed everything. rewrote the uri parser. added uricmp. wew. --- uriunescape.c | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 uriunescape.c (limited to 'uriunescape.c') diff --git a/uriunescape.c b/uriunescape.c new file mode 100644 index 0000000..aafc6ea --- /dev/null +++ b/uriunescape.c @@ -0,0 +1,12 @@ +#include "uri.h" +#include + +int main(int argc,char *argv[]) { + int len; + for(argv++,argc--;argc;argc--,argv++) { + len=uriunescape(*argv,*argv); + write(1,*argv,len); + if(argc-1) write(1," ",1); + } + return 0; +} -- cgit v1.2.3