summaryrefslogtreecommitdiffstats
path: root/libstrvec.lds
diff options
context:
space:
mode:
authorLouis Burda <quent.burda@gmail.com>2023-05-13 21:12:17 +0200
committerLouis Burda <quent.burda@gmail.com>2023-05-13 21:12:17 +0200
commit9fe89a48bb89dc6740787c9ed8c95b5339bba905 (patch)
treebca73651945caef5e188328a538ca782470c43dd /libstrvec.lds
parent110b99563e127abe1439fffb0084400b47eea5b3 (diff)
downloadlibstrvec-c-9fe89a48bb89dc6740787c9ed8c95b5339bba905.tar.gz
libstrvec-c-9fe89a48bb89dc6740787c9ed8c95b5339bba905.zip
Add initial version
Diffstat (limited to 'libstrvec.lds')
-rw-r--r--libstrvec.lds36
1 files changed, 21 insertions, 15 deletions
diff --git a/libstrvec.lds b/libstrvec.lds
index bcc3132..15033b8 100644
--- a/libstrvec.lds
+++ b/libstrvec.lds
@@ -1,23 +1,29 @@
-LIBDVEC_1.1.2 {
+LIBSTRVEC_1.0.0 {
global:
- dvec_init;
- dvec_deinit;
+ strvec_init;
+ strvec_deinit;
- dvec_alloc;
- dvec_free;
+ strvec_alloc;
+ strvec_free;
- dvec_copy;
- dvec_swap;
+ strvec_copy;
+ strvec_swap;
- dvec_clear;
- dvec_reserve;
- dvec_shrink;
+ strvec_clear;
+ strvec_reserve;
+ strvec_shrink;
- dvec_add;
- dvec_rm;
- dvec_replace;
+ strvec_stra;
+ strvec_len;
- dvec_iter_fwd;
- dvec_iter_bwd;
+ strvec_pushn;
+ strvec_popn;
+ strvec_replace;
+ strvec_remove;
+
+ strvec_iter_fwd;
+ strvec_iter_bwd;
+
+ strvec_dsize;
local: *;
};