#ifndef CONF_H #define CONF_H #include #include #include typedef struct conf { char *PROCESS; struct conf *next; } conf; extern conf *conf_head; extern void read_conf_link(char *path); #endif