mirror of
https://github.com/espressif/esp-idf.git
synced 2025-10-04 20:40:00 +00:00
feat(storage/vfs): make part of nullfs API private
This commit is contained in:
24
components/vfs/include/esp_private/nullfs.h
Normal file
24
components/vfs/include/esp_private/nullfs.h
Normal file
@@ -0,0 +1,24 @@
|
||||
/*
|
||||
* SPDX-FileCopyrightText: 2024 Espressif Systems (Shanghai) CO LTD
|
||||
*
|
||||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
#pragma once
|
||||
|
||||
#include "esp_vfs.h"
|
||||
#include "esp_err.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
/**
|
||||
* @brief Get VFS structure for /dev/null
|
||||
*
|
||||
* @return VFS structure for /dev/null
|
||||
*/
|
||||
const esp_vfs_t *esp_vfs_null_get_vfs(void);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
Reference in New Issue
Block a user