backend.h 230 B

123456789101112131415161718
  1. #ifndef BACKEND_H
  2. #define BACKEND_H
  3. #include "io.h"
  4. #include <stdio.h>
  5. #include <stdlib.h>
  6. #include <string.h>
  7. #include <stdint.h>
  8. #include "bus.h"
  9. #include "config.h"
  10. int do_pid_file(config_t* cfg);
  11. int main_loop();
  12. #endif