i3/i3bar/include/child.h
Axel Wagner 7d7867acce Be more strict with encapsulation
I.e. move the xcb-event-handling into xcb.c and the
child-process-communications into newly created child.c.
Also change some includes.
2010-08-05 05:09:59 +02:00

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