summaryrefslogtreecommitdiffstats
path: root/libstrvec.lds
blob: 84dad3046455758798d80e1e84d4edb63a5be114 (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
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_iter_fwd;
		strvec_iter_bwd;

		strvec_dsize;
	local: *;
};