18 lines
315 B
C
18 lines
315 B
C
#ifndef INCLUDE_H
|
|
#define INCLUDE_H
|
|
|
|
// INCLUDE
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <limits.h>
|
|
#include <string.h>
|
|
#include <stdalign.h> //
|
|
#include <stdint.h>
|
|
|
|
// DEFINE
|
|
#define BUFF_MAX 10 //(char) <= 254
|
|
#define IN_BUFF_CHARS 10 //(char) <= 254
|
|
|
|
//TypeDef
|
|
#endif
|