18 lines
361 B
C
18 lines
361 B
C
/* Copyright Wullie - wulliestudios this product is licenced under the WrathMark Licence*/
|
|
#ifndef webserver_h
|
|
#define webserver_h
|
|
|
|
// librarys
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <sys/socket.h>
|
|
#include <sys.types.h>
|
|
#include <netinet/in.h>
|
|
|
|
#define Buffer_size 16000
|
|
|
|
void startServer(int port, const char *directory);
|
|
|
|
#endif
|