mirror of
https://github.com/opus-tango/http-server-in-c.git
synced 2026-03-20 12:05:25 +00:00
13 lines
220 B
C
13 lines
220 B
C
#ifndef CLIENT_HANDLER_H
|
|
#define CLIENT_HANDLER_H
|
|
|
|
#include <pthread.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <sys/socket.h>
|
|
#include <sys/types.h>
|
|
|
|
void* client_handler(void* args);
|
|
|
|
#endif |