123456789101112131415161718 |
- #ifndef BACKEND_H
- #define BACKEND_H
- #include "io.h"
- #include <stdio.h>
- #include <stdlib.h>
- #include <string.h>
- #include <stdint.h>
- #include "bus.h"
- #include "config.h"
- int do_pid_file(config_t* cfg);
- int main_loop();
- #endif
|