mirror of https://github.com/status-im/go-waku.git
14 lines
195 B
C
14 lines
195 B
C
|
#ifndef MAIN_H
|
||
|
#define MAIN_H
|
||
|
|
||
|
#include <stdbool.h>
|
||
|
|
||
|
void callBack(char *signal);
|
||
|
|
||
|
bool isError(char *input);
|
||
|
|
||
|
int getIntValue(char *input);
|
||
|
|
||
|
char* getStrValue(char *input);
|
||
|
|
||
|
#endif /* MAIN_H */
|