From ae0520e57267dbd866fc8cd25f66f4e6af2ac118 Mon Sep 17 00:00:00 2001 From: dec05eba Date: Mon, 13 Jul 2020 15:59:30 +0200 Subject: Move c files into src directory --- src/program.h | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 src/program.h (limited to 'src/program.h') diff --git a/src/program.h b/src/program.h new file mode 100644 index 0000000..265dfa5 --- /dev/null +++ b/src/program.h @@ -0,0 +1,15 @@ +#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); + +int program_buffer_write_callback(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