more functions implemented, and updated LICENSES
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user