mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-12-04 02:09:12 +00:00
15 lines
312 B
C
15 lines
312 B
C
|
#pragma once
|
||
|
|
||
|
#include <storage/storage.h>
|
||
|
|
||
|
char* sequential_file_resolve_path(
|
||
|
Storage* storage,
|
||
|
const char* dir,
|
||
|
const char* prefix,
|
||
|
const char* extension);
|
||
|
bool sequential_file_open(
|
||
|
Storage* storage,
|
||
|
File* file,
|
||
|
const char* dir,
|
||
|
const char* prefix,
|
||
|
const char* extension);
|