#ifndef CONF_H #define CONF_H #include #include #include typedef struct conf { char *PROCESS; char *PROCESS_name, *PROCESS_command; int PROCESS_len, PROCESS_name_len, PROCESS_command_len; struct conf *next; } conf; extern conf *conf_head; extern void read_conf_link(char *path); extern void free_conf(conf *p); extern void print_conf(conf *p); #endif