mirror of
https://github.com/lxsang/ant-http
synced 2024-11-08 05:08:22 +01:00
11 lines
195 B
C
11 lines
195 B
C
#include "utils.h"
|
|
|
|
int main(int argc, char const *argv[])
|
|
{
|
|
char* v = url_decode("code=3%2B4");
|
|
if(match_float(argv[1]))
|
|
printf("It is a float\n");
|
|
printf("Result is %s\n",v);
|
|
return 0;
|
|
}
|