summaryrefslogtreecommitdiffstats
path: root/libstrvec.lds
diff options
context:
space:
mode:
authorLouis Burda <quent.burda@gmail.com>2023-05-13 16:16:45 +0200
committerLouis Burda <quent.burda@gmail.com>2023-05-13 16:16:45 +0200
commit110b99563e127abe1439fffb0084400b47eea5b3 (patch)
treeded22ce24e5d0545b287817661267de34e9810fd /libstrvec.lds
downloadlibstrvec-c-110b99563e127abe1439fffb0084400b47eea5b3.tar.gz
libstrvec-c-110b99563e127abe1439fffb0084400b47eea5b3.zip
Prelim push
Diffstat (limited to 'libstrvec.lds')
-rw-r--r--libstrvec.lds23
1 files changed, 23 insertions, 0 deletions
diff --git a/libstrvec.lds b/libstrvec.lds
new file mode 100644
index 0000000..bcc3132
--- /dev/null
+++ b/libstrvec.lds
@@ -0,0 +1,23 @@
+LIBDVEC_1.1.2 {
+ global:
+ dvec_init;
+ dvec_deinit;
+
+ dvec_alloc;
+ dvec_free;
+
+ dvec_copy;
+ dvec_swap;
+
+ dvec_clear;
+ dvec_reserve;
+ dvec_shrink;
+
+ dvec_add;
+ dvec_rm;
+ dvec_replace;
+
+ dvec_iter_fwd;
+ dvec_iter_bwd;
+ local: *;
+};