24 lines
288 B
C++
24 lines
288 B
C++
/*
|
|
* start.hpp
|
|
*
|
|
* Created on: Feb 10, 2024
|
|
* Author: Gabriel
|
|
*/
|
|
|
|
#ifndef SRC_COMPONENTS_START_HPP_
|
|
#define SRC_COMPONENTS_START_HPP_
|
|
|
|
#include "main.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void start();
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* SRC_COMPONENTS_START_HPP_ */
|