From b1be90f4870a6ee3b8807b15b3e8bfe9c5573bbc Mon Sep 17 00:00:00 2001 From: midipix Date: Sun, 25 Feb 2024 04:14:36 +0000 Subject: driver: added slbt_lib_get_txtfile_ctx(): plain line vector from a text file. --- include/slibtool/slibtool.h | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'include') diff --git a/include/slibtool/slibtool.h b/include/slibtool/slibtool.h index 4046352..320a614 100644 --- a/include/slibtool/slibtool.h +++ b/include/slibtool/slibtool.h @@ -362,6 +362,11 @@ struct slbt_symlist_ctx { const char ** symstrv; }; +struct slbt_txtfile_ctx { + const char * const * path; + const char ** txtlinev; +}; + /* raw input api */ slbt_api int slbt_fs_map_input (const struct slbt_driver_ctx *, int, const char *, int, @@ -384,6 +389,10 @@ slbt_api int slbt_lib_get_symlist_ctx (const struct slbt_driver_ctx *, const c slbt_api void slbt_lib_free_symlist_ctx (struct slbt_symlist_ctx *); +slbt_api int slbt_lib_get_txtfile_ctx (const struct slbt_driver_ctx *, const char *, struct slbt_txtfile_ctx **); + +slbt_api void slbt_lib_free_txtfile_ctx (struct slbt_txtfile_ctx *); + /* command execution context api */ slbt_api int slbt_ectx_get_exec_ctx (const struct slbt_driver_ctx *, struct slbt_exec_ctx **); slbt_api void slbt_ectx_free_exec_ctx (struct slbt_exec_ctx *); -- cgit v1.2.3