more functions implemented, and updated LICENSES

This commit is contained in:
2026-05-28 18:23:10 -05:00
parent df76edc97a
commit e142468c81
5 changed files with 238 additions and 16 deletions

View File

@@ -1,12 +1,45 @@
#include "MODULE_marigold_vector/marigold_vector.h"
#include <stddef.h>
#include <stdio.h>
#include "MODULE_marigold_dynamic_array/marigold_dynamic_array.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");
dynamic_array array = dynamic_array_create();
vector_struct* vector = vector_create(sizeof(int),
500,
vector_growth_double,
NULL,
NULL,
true);
return 0;
return EXIT_SUCCESS;
}