24 lines
534 B
C
24 lines
534 B
C
#ifndef TEST_STR8_H
|
|
#define TEST_STR8_H
|
|
|
|
#include "tester.h"
|
|
|
|
#ifdef __cplusplus
|
|
BEGIN_C_LINKAGE
|
|
#endif // __cplusplus
|
|
|
|
TestFuncResult test_str8_lit(void);
|
|
TestFuncResult test_str8_lit_ro(void);
|
|
TestFuncResult test_str8_buf(void);
|
|
TestFuncResult test_str8_get_index_within_bounds(void);
|
|
TestFuncResult test_str8_get_index_out_of_bounds(void);
|
|
TestFuncResult test_str8_set(void);
|
|
TestFuncResult test_str8_find(void);
|
|
TestFuncResult test_str8_rfind(void);
|
|
|
|
#ifdef __cplusplus
|
|
END_C_LINKAGE
|
|
#endif // __cplusplus
|
|
|
|
#endif // !TEST_STR8_H
|