初版代码提交,待修改优化

This commit is contained in:
2025-08-17 14:58:48 +08:00
commit 91f89d7218
7 changed files with 445 additions and 0 deletions

17
src/main.c Executable file
View File

@@ -0,0 +1,17 @@
/**
* @file main.c
* @author guishenking (guishenking@outlook.com)
* @brief
* @version 0.1
* @date 2025-08-15
*
* @copyright Copyright (c) 2025
*
*/
#include <stdio.h>
#include "lib/vector/vector.h"
int main() {
vector_t *vec = vector_create(sizeof(int), 10);
return 0;
}