dish/exec.h

11 lines
236 B
C
Raw Normal View History

2022-09-18 06:46:23 +00:00
/*
* @Author: 1ridic
* @Date: 2022-09-18 14:13:40
* @Last Modified by: 1ridic
* @Last Modified time: 2022-09-18 14:13:40
*/
2022-09-18 05:43:33 +00:00
#ifndef __EXEC_H__
#define __EXEC_H__
int forkExec(char **args);
2022-09-18 06:46:23 +00:00
int commandExec(char **args);
2022-09-18 05:43:33 +00:00
#endif