29 lines
393 B
C
29 lines
393 B
C
/**
|
|
* @brief Module description
|
|
* @details This file is an <Purpose here>
|
|
* @author Jake G
|
|
* @date todays_date
|
|
* @copyright None
|
|
* @file module_name.h
|
|
*/
|
|
|
|
//#pragma once
|
|
#ifndef module_name
|
|
#define module_name
|
|
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
{
|
|
#endif
|
|
|
|
|
|
#include <stdint.h>
|
|
#include <stdbool.h>
|
|
#include <stddef.h>
|
|
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif // __cplusplus
|
|
|
|
#endif //module_name
|