daemon/conf.h

18 lines
237 B
C

#ifndef CONF_H
#define CONF_H
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
typedef struct conf {
char *PROCESS;
struct conf *next;
} conf;
extern conf *conf_head;
extern void read_conf_link(char *path);
#endif