24 lines
597 B
C
24 lines
597 B
C
#ifndef TEST_STR8_LIST_H
|
|
#define TEST_STR8_LIST_H
|
|
|
|
#include "wapp.h"
|
|
|
|
#ifdef WAPP_PLATFORM_CPP
|
|
BEGIN_C_LINKAGE
|
|
#endif // WAPP_PLATFORM_CPP
|
|
|
|
TestFuncResult test_str8_list_get(void);
|
|
TestFuncResult test_str8_list_push_front(void);
|
|
TestFuncResult test_str8_list_push_back(void);
|
|
TestFuncResult test_str8_list_insert(void);
|
|
TestFuncResult test_str8_list_pop_front(void);
|
|
TestFuncResult test_str8_list_pop_back(void);
|
|
TestFuncResult test_str8_list_remove(void);
|
|
TestFuncResult test_str8_list_empty(void);
|
|
|
|
#ifdef WAPP_PLATFORM_CPP
|
|
END_C_LINKAGE
|
|
#endif // WAPP_PLATFORM_CPP
|
|
|
|
#endif // !TEST_STR8_LIST_H
|