Skip to content

Instantly share code, notes, and snippets.

View heitorfm's full-sized avatar

Heitor Machado heitorfm

View GitHub Profile
@heitorfm
heitorfm / nweb23.c
Last active January 10, 2023 22:08 — forked from sumpygump/nweb23.c
nweb tiny web server written in c (from http://www.ibm.com/developerworks/systems/library/es-nweb/index.html)
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <errno.h>
#include <string.h>
#include <fcntl.h>
#include <signal.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>