mirror of
https://github.com/DarkFlippers/unleashed-firmware.git
synced 2024-12-18 19:01:47 +03:00
18 lines
344 B
C
18 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
|