测试用例

This commit is contained in:
2026-08-29 11:39:28 +08:00
parent a0758766c5
commit 8fd65b0de0
19 changed files with 1723 additions and 432 deletions
+3
View File
@@ -17,6 +17,8 @@ typedef struct {
c_size_t size;
}c_ArrayList_t;
#define c_ArrayList(obj_size) ((c_ArrayList_t) { 0, (obj_size), 0, 0 })
/* ------------------------------------------------------------------------------------------------------------------ */
/* */
@@ -30,4 +32,5 @@ void* c_ArrayList_Get(c_ArrayList_t* self, c_size_t index);
c_err_t c_ArrayList_Remove(c_ArrayList_t* self, c_size_t index);
#endif /*INCLUDED_C_ARRAYLIST_H*/