mirror of
https://dev.iopsys.eu/bbf/icwmp.git
synced 2026-01-28 01:27:16 +01:00
7 lines
219 B
C
7 lines
219 B
C
#ifndef SUB_PROC_H
|
|
#define SUB_PROC_H
|
|
#include <libubox/blobmsg_json.h>
|
|
typedef char* (*task_function)(char *task_arg);
|
|
int subprocess_start(task_function task_fun);
|
|
char *execute_task_in_subprocess(char *task);
|
|
#endif
|