refactor code to multiple modules

This commit is contained in:
DanyLE
2024-03-30 00:18:51 +01:00
parent 48543efbbd
commit c1960f0438
17 changed files with 1899 additions and 828 deletions

6
seat.h Normal file
View File

@ -0,0 +1,6 @@
#ifndef DIYAC_SEAT_H
#define DIYAC_SEAT_H
#include "diyac.h"
void diyac_init_seat(struct diyac_server* server);
#endif