29 lines
456 B
C
29 lines
456 B
C
#ifndef __NICKEL_H_
|
|
#define __NICKEL_H_
|
|
|
|
/* common includes across the project */
|
|
#include <sys/types.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <stddef.h>
|
|
#include <stdint.h>
|
|
#include <stdbool.h>
|
|
|
|
#include <unistd.h>
|
|
#include <errno.h>
|
|
#include <string.h>
|
|
|
|
/* includes from internal to the project */
|
|
// ...
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
// any thing we need in the top level here
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* __NICKEL_H_ */ |