mirror of
https://github.com/pine64/bl_iot_sdk.git
synced 2024-11-20 08:10:00 +00:00
25 lines
306 B
C
25 lines
306 B
C
/*
|
|
* Copyright (C) 2015-2017 Alibaba Group Holding Limited
|
|
*/
|
|
|
|
#ifndef AOS_VFS_FILE_H
|
|
#define AOS_VFS_FILE_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
int get_fd(file_t *file);
|
|
|
|
file_t *get_file(int fd);
|
|
|
|
file_t *new_file(inode_t *node);
|
|
|
|
void del_file(file_t *file);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|