19 lines
324 B
C
19 lines
324 B
C
#ifndef TEST_CPATH_H
|
|
#define TEST_CPATH_H
|
|
|
|
#include "wapp.h"
|
|
|
|
#ifdef __cplusplus
|
|
BEGIN_C_LINKAGE
|
|
#endif // __cplusplus
|
|
|
|
TestFuncResult test_cpath_join_path(void);
|
|
TestFuncResult test_cpath_dirname(void);
|
|
TestFuncResult test_cpath_dirup(void);
|
|
|
|
#ifdef __cplusplus
|
|
END_C_LINKAGE
|
|
#endif // __cplusplus
|
|
|
|
#endif // !TEST_CPATH_H
|