blob: 33a7b67e459791346d8ee2c879af2761f4eecf7e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <stdint.h>
#include "common.c"
int main(){
char* data = getenv("QUERY_STRING");
char* hardip = getenv("REMOTE_ADDR");
printf("%s%c%c\n",
"Content-Type:text/html;charset=iso-8859-1",13,10);
printf("Data:%s",data);
}
|