19 lines
530 B
C
19 lines
530 B
C
/******************************************************************************
|
|
* MiniFFS : Mini Flat File System
|
|
* platform/memory.h: Specific functions for the Memory backend
|
|
*
|
|
* Copyright (c) 2008-2022 986-Studio. All rights reserved.
|
|
*
|
|
******************************************************************************/
|
|
|
|
#ifndef MINIFFS_PLATFORM_MEMORY_H
|
|
#define MINIFFS_PLATFORM_MEMORY_H
|
|
|
|
typedef struct miniffs_t
|
|
{
|
|
miniffs_header_t *header;
|
|
void *memoryOffset;
|
|
} miniffs_t;
|
|
|
|
#endif /* MINIFFS_PLATFORM_MEMORY_H */
|