home *** CD-ROM | disk | FTP | other *** search
- #include <stdio.h>
- #include <stdlib.h>
- #define LF 10
- void main(int argc, char *argv[])
- {
-
- int cont_len,index;
- char c;
-
- cont_len = atoi(getenv("CONTENT_LENGTH"));
-
- printf("Content-type: text/html%c%c",LF,LF);
- printf("<listing>\n");
- for(index=0;index<cont_len;index++)
- {
- c = getchar();
- printf("%c",c);
- }
- }
-
-
-
-