17 lines
292 B
C
17 lines
292 B
C
|
|
/**
|
||
|
|
* @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;
|
||
|
|
}
|