mirror of
https://github.com/open5gs/open5gs.git
synced 2026-05-06 16:17:03 +00:00
15 lines
254 B
C
15 lines
254 B
C
#ifndef __TESTAPP_H__
|
|
#define __TESTAPP_H__
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif /* __cplusplus */
|
|
|
|
int test_app_initialize(app_param_t *param);
|
|
void test_app_terminate(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif /* __cplusplus */
|
|
|
|
#endif /* __TESTAPP_H__ */
|