1
6
7
8
9
10
11
12
13
14
15
24
25
26
33
34
35
36
37
/* ... */
#pragma once
#include "esp_vfs.h"
#ifdef __cplusplus
extern "C" {
#endif
/* ... */
esp_err_t esp_vfs_semihost_register(const char* base_path);
/* ... */
esp_err_t esp_vfs_semihost_unregister(const char* base_path);
#ifdef __cplusplus
}{...}
#endif