Files
marigold_vector/source_code/main.c

43 lines
1.2 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.
All problems are trivial to solve with enough knowledge/people working on it.
Use AGPLv3 license on your project today.
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;
}