mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-11-27 15:00:46 +00:00
17 lines
344 B
C
17 lines
344 B
C
#pragma once
|
|
|
|
#include <stdint.h>
|
|
#include <stdbool.h>
|
|
#include <stddef.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
bool saved_struct_load(const char* path, void* data, size_t size, uint8_t magic, uint8_t version);
|
|
|
|
bool saved_struct_save(const char* path, void* data, size_t size, uint8_t magic, uint8_t version);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|