27 lines
675 B
C
27 lines
675 B
C
|
#ifndef EMMAFS_H_
|
||
|
#define EMMAFS_H_
|
||
|
|
||
|
/* For now, this is just a collection of includes.
|
||
|
* This is for the purpose of avoid redundant importing of
|
||
|
* commonly used includes like stdlib, stdbool or errno,
|
||
|
* that are used in almost all files. It really is meant to make
|
||
|
* The beginning of reach file more readable.
|
||
|
* In the future, I will also use this to define some structs
|
||
|
* that are needed in many other places to help juggling
|
||
|
* loads of different includes. */
|
||
|
|
||
|
#include <errno.h>
|
||
|
#include <stdarg.h>
|
||
|
#include <stdbool.h>
|
||
|
#include <stdint.h>
|
||
|
#include <stdio.h>
|
||
|
#include <stdlib.h>
|
||
|
#include <string.h>
|
||
|
#include <time.h>
|
||
|
|
||
|
#include <sys/types.h>
|
||
|
|
||
|
|
||
|
|
||
|
#endif // EMMAFS_H_
|