summaryrefslogtreecommitdiffstats
path: root/libstrvec.lds
blob: 951a0528e773f02464182e59f8588863b2d51ced (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
LIBSTRVEC_1.0.0 {
	global:
		strvec_init;
		strvec_deinit;

		strvec_alloc;
		strvec_free;

		strvec_copy;
		strvec_swap;

		strvec_clear;
		strvec_reserve;
		strvec_shrink;

		strvec_stra;
		strvec_at;
		strvec_len;

		strvec_pushn;
		strvec_popn;
		strvec_replace;
		strvec_remove;

		strvec_remove_str;
		strvec_find;
		strvec_join;

		strvec_iter_fwd;
		strvec_iter_bwd;
	local: *;
};