| lh | 9ed821d | 2023-04-07 01:36:19 -0700 | [diff] [blame] | 1 | |
| 2 | #ifndef RUNNER_H | ||||
| 3 | #define RUNNER_H | ||||
| 4 | |||||
| 5 | #include <syslog.h> | ||||
| 6 | #include <sys/types.h> | ||||
| 7 | #include <sys/stat.h> | ||||
| 8 | #include <fcntl.h> | ||||
| 9 | #include <unistd.h> | ||||
| 10 | #include <sys/file.h> | ||||
| 11 | #include "settings.h" | ||||
| 12 | #include "netapi.h" | ||||
| 13 | #include "softap_api.h" | ||||
| 14 | void start_run(zping_settings_t *zping_settings); | ||||
| 15 | |||||
| 16 | #define zping_print(LEVEL,...) do { printf(__VA_ARGS__); \ | ||||
| 17 | syslog(LEVEL,__VA_ARGS__);} while(0) | ||||
| 18 | |||||
| 19 | |||||
| 20 | #endif // RUNNER_H | ||||