2016-07-29 17:24:37 +08:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2016 Intel Corporation.
|
|
|
|
*
|
2017-01-19 09:01:01 +08:00
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
2016-07-29 17:24:37 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _FAT_FS_H_
|
|
|
|
#define _FAT_FS_H_
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <ff.h>
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2016-10-30 14:57:35 +08:00
|
|
|
FS_FILE_DEFINE(FIL fp);
|
|
|
|
FS_DIR_DEFINE(DIR dp);
|
2016-07-29 17:24:37 +08:00
|
|
|
|
|
|
|
#define MAX_FILE_NAME 12 /* Uses 8.3 SFN */
|
|
|
|
|
2016-10-30 14:57:35 +08:00
|
|
|
static inline off_t fs_tell(struct _fs_file_object *zfp)
|
2016-07-29 17:24:37 +08:00
|
|
|
{
|
|
|
|
return f_tell(&zfp->fp);
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* _FAT_FS_H_ */
|