This commit is contained in:
judah 2026-02-20 16:03:55 -07:00
parent 170b6cc494
commit b497d1b34c

View file

@ -1,12 +1,3 @@
/*
* Portable static HTTP file server serves files from ./out/ on port 8080.
*
* Build:
* Linux/macOS: cc -O2 -o server server.c
* Windows MSVC: cl /O2 server.c ws2_32.lib
* Windows MinGW: gcc -O2 -o server.exe server.c -lws2_32
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>