daemon/conf.h

18 lines
237 B
C
Raw Normal View History

2021-12-11 13:20:06 +08:00
#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