mirror of
https://dev.iopsys.eu/bbf/icwmp.git
synced 2025-12-10 07:44:41 +01:00
7 lines
186 B
C
7 lines
186 B
C
#ifndef SUB_PROC_H
|
|
#define SUB_PROC_H
|
|
|
|
typedef char* (*task_function)(char *task_arg);
|
|
int subprocess_start(task_function task_fun);
|
|
char *execute_task_in_subprocess(char *task);
|
|
#endif
|