libstrvec-c

C string vector library
git clone https://git.sinitax.com/sinitax/libstrvec-c
Log | Files | Refs | LICENSE | sfeed.txt

libstrvec.lds (389B)


      1LIBSTRVEC_1.0.0 {
      2	global:
      3		strvec_init;
      4		strvec_deinit;
      5
      6		strvec_alloc;
      7		strvec_free;
      8
      9		strvec_copy;
     10		strvec_swap;
     11
     12		strvec_clear;
     13		strvec_reserve;
     14		strvec_shrink;
     15
     16		strvec_stra;
     17		strvec_at;
     18		strvec_len;
     19
     20		strvec_pushn;
     21		strvec_popn;
     22		strvec_replace;
     23		strvec_remove;
     24
     25		strvec_remove_str;
     26		strvec_find;
     27		strvec_join;
     28
     29		strvec_iter_fwd;
     30		strvec_iter_bwd;
     31	local: *;
     32};