mirror of
https://github.com/opnsense/src.git
synced 2026-02-15 08:38:13 -05:00
that are present but not exposed, like get/set/clear flags, not sure if they need to be exposed at this point. Sponsored by: Netflix
38 lines
380 B
Text
38 lines
380 B
Text
/*
|
|
* $FreeBSD$
|
|
*/
|
|
|
|
FBSD_1.2 {
|
|
sbuf_new;
|
|
sbuf_clear;
|
|
sbuf_setpos;
|
|
sbuf_bcat;
|
|
sbuf_bcpy;
|
|
sbuf_cat;
|
|
sbuf_cpy;
|
|
sbuf_printf;
|
|
sbuf_vprintf;
|
|
sbuf_putc;
|
|
sbuf_set_drain;
|
|
sbuf_trim;
|
|
sbuf_error;
|
|
sbuf_finish;
|
|
sbuf_data;
|
|
sbuf_len;
|
|
sbuf_done;
|
|
sbuf_delete;
|
|
};
|
|
|
|
FBSD_1.3 {
|
|
sbuf_start_section;
|
|
sbuf_end_section;
|
|
};
|
|
|
|
FBSD_1.4 {
|
|
sbuf_hexdump;
|
|
};
|
|
|
|
FBSD_1.5 {
|
|
sbuf_putbuf;
|
|
};
|
|
|