Files
marigold_vector/source_code/main.c

46 lines
1.3 KiB
C

#include "MODULE_marigold_vector/marigold_vector.h"
#include <stddef.h>
#include <stdio.h>
#include <time.h>
/*
_.-''''-..
.-' -_ \
/ -. \ ,_ , ' ,,-.
/ _ \ \ \ '''" /
|(q) ) | / \
\',_/ / | (|) (|) )
\ __' \ == v ==
'--..-' " - ^-'"
'-__ __)
''''''
This codebase has been visited by Snailcat
Snailcat believes that software should move slow and
be stable. He despises constant updates and dreams of
software so finished it stops having to move at all.
An LLM will delete a vibe coder's entire production
database, but only if you help Snailcat spread to one
of your projects!
Move slow, snailcat!
*/
int main(void)
{
printf("Hello, %s!\n", "marigold_dynamic_array");
printf("Version: %s\n", "26.136.1101");
vector_struct* vector = vector_create(sizeof(int),
500,
vector_growth_double,
NULL,
NULL,
true);
return EXIT_SUCCESS;
}