mirror of
https://git.intern.spaceteamaachen.de/ALPAKA/TACOS.git
synced 2025-06-10 16:45:59 +00:00
23 lines
266 B
C
23 lines
266 B
C
#ifndef STA_TACOS_C_API_STARTUP_H
|
|
#define STA_TACOS_C_API_STARTUP_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
|
|
/**
|
|
* @brief
|
|
*
|
|
* @param arg Default task argument
|
|
*/
|
|
void startTACOS(void * arg);
|
|
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
|
|
#endif // STA_TACOS_C_API_STARTUP_H
|