mirror of
https://gitee.com/acl-dev/acl.git
synced 2024-11-30 02:47:56 +08:00
cc05b877a2
first commit acl to github
17 lines
230 B
C
17 lines
230 B
C
#include "lib_acl.h"
|
|
|
|
extern char **_environ;
|
|
|
|
int main(void)
|
|
{
|
|
const char **pptr = (const char**) _environ;
|
|
|
|
printf("Content-Type: text/html\r\n\r\n");
|
|
while (*pptr) {
|
|
printf("%s<br>\r\n", *pptr);
|
|
pptr++;
|
|
}
|
|
|
|
return 0;
|
|
}
|