mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-11-28 15:30:29 +00:00
15 lines
No EOL
312 B
C
15 lines
No EOL
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); |