10 lines
126 B
C
10 lines
126 B
C
|
#ifndef CHILD_H_
|
||
|
#define CHILD_H_
|
||
|
|
||
|
#define STDIN_CHUNK_SIZE 1024
|
||
|
|
||
|
void start_child(char *command);
|
||
|
void kill_child();
|
||
|
|
||
|
#endif
|