From dfad8a8016426d7fe198dc32973b01a1e075142e Mon Sep 17 00:00:00 2001 From: dec05eba Date: Sun, 12 Jul 2020 21:32:44 +0200 Subject: Starting on conversion to c. Program exec, buffers.. --- program.h | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 program.h (limited to 'program.h') diff --git a/program.h b/program.h new file mode 100644 index 0000000..4c93066 --- /dev/null +++ b/program.h @@ -0,0 +1,13 @@ +#ifndef PROGRAM_H +#define PROGRAM_H + +/* Return 0 if you want to continue reading. @data is null-terminated */ +typedef int (*ProgramOutputCallback)(char *data, int size, void *userdata); + +/* + @args need to have at least 2 arguments. The first which is the program name + and the last which is NULL, which indicates end of args +*/ +int program_exec(const char **args, ProgramOutputCallback output_callback, void *userdata); + +#endif -- cgit v1.2.3