From f8a610ace078866d8b6e783c3c21d0865ff5e4d1 Mon Sep 17 00:00:00 2001 From: timerix Date: Fri, 28 Oct 2022 11:56:59 +0600 Subject: [PATCH] Autoarr readme --- src/Autoarr/README.md | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 src/Autoarr/README.md diff --git a/src/Autoarr/README.md b/src/Autoarr/README.md new file mode 100644 index 0000000..f72df35 --- /dev/null +++ b/src/Autoarr/README.md @@ -0,0 +1,9 @@ +# Autoarr struct +`Autoarr` means Automatically resizing array. It is my implementation of dyynamic array. If you want to use `Autoarr` of some type, it should be declared in header file by macro `Autoarr_declare` and defined in source file by `Autoarr_define`. + +Examples: +[Hashtable.h](src/Hashtable/Hashtable.h) +[Hashtable.c](src/Hashtable/Hashtable.c) + +### Autoarr_*_exported +Contains definitions for functions, exported for using in C# kerep wrapper.