blob: 5e453e23826ca0f8d8af1a34ad82ec9ef345f176 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#include <libwebglue.h>
#include <unistd.h>
int main(void)
{
web_header("Content-type: text/html");
web_echo("%d<br>", web_time());
web_echo("<script type='text/javascript'>setTimeout(function(){location.reload();}, %d);</script>", 1000);
return 0;
}
|