aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/libdvec/libdvec.lds
blob: 999010ffd5dfef92d9469391749e637dbb6a661f (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
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;

		dvec_bubble_sort;
		dvec_binary_search;
	local: *;
};