Many bugfixes - fixed warnings and compile errors

This commit is contained in:
2017-08-27 17:08:16 +02:00
parent eca544a421
commit a518a69d9a
6 changed files with 32 additions and 16 deletions

View File

@@ -1,10 +1,20 @@
#ifndef cfgreader_H
#define cfgreader_H
typedef struct sensornode {
char *ip;
struct sensornode *next;
} sensornode;
void cfginit(void);
void cfgdestroy(void);
void cfgreinit(void);
int cfgreadpinnumber(int element);
int cfgreadpinamount(void);
int cfgreadsensornodes(sensornode *nodes, int nodecount);
typedef struct sensornode {
char *ip;
struct sensornode *next;
}
#endif