mirror of
https://gitlab.com/niansa/simpsh-httpd.git
synced 2025-03-06 20:53:36 +01:00
25 lines
400 B
C
25 lines
400 B
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <assert.h>
|
|
|
|
|
|
#define uint unsigned int
|
|
#define sint signed int
|
|
|
|
#define uchar unsigned char
|
|
#define schar signed char
|
|
|
|
#define ushort unsigned short
|
|
#define sshort signed short
|
|
|
|
#define ulong unsigned long
|
|
#define slong signed long;
|
|
|
|
#define bool ushort
|
|
#define true 1
|
|
#define false 0
|
|
|
|
|
|
#include "databuffer.h"
|
|
#include "filelib.h"
|