mirror of
https://github.com/DarkFlippers/unleashed-firmware.git
synced 2025-12-12 04:34:43 +04:00
16 lines
512 B
C
16 lines
512 B
C
#pragma once
|
|
#include <stdint.h>
|
|
#include <stddef.h>
|
|
#include "felica.h"
|
|
|
|
#include <lib/toolbox/simple_array.h>
|
|
|
|
extern const SimpleArrayConfig felica_service_array_cfg;
|
|
extern const SimpleArrayConfig felica_area_array_cfg;
|
|
extern const SimpleArrayConfig felica_public_block_array_cfg;
|
|
extern const SimpleArrayConfig felica_system_array_cfg;
|
|
|
|
void felica_system_init(FelicaSystem* system);
|
|
void felica_system_reset(FelicaSystem* system);
|
|
void felica_system_copy(FelicaSystem* system, const FelicaSystem* other);
|