blob: 8ceb75c1920722e4398df644f9d94e4053d13041 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef CONFIGFILE_H
#define CONFIGFILE_H
#include "textFile.h"
extern char* getValueInConfigFile(textFile_t *p, char *s);
extern void delRemInConfigFile(textFile_t *p);
#endif
|