22 lines
216 B
C
22 lines
216 B
C
/*
|
|
* start.h
|
|
*
|
|
* Created on: Oct 31, 2024
|
|
* Author: Gabriel
|
|
*/
|
|
|
|
#ifndef START_H_
|
|
#define START_H_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void start();
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* START_H_ */
|