mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-04-27 03:49:58 -07: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); |