Skip to content

Commit 5647862

Browse files
committed
feat: add eos_slot_manager.h header for extern slot functions
1 parent ef0798b commit 5647862

1 file changed

Lines changed: 17 additions & 0 deletions

File tree

include/eos_slot_manager.h

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
#ifndef EOS_SLOT_MANAGER_H
2+
#define EOS_SLOT_MANAGER_H
3+
4+
#include "eos_types.h"
5+
6+
#ifdef __cplusplus
7+
extern "C" {
8+
#endif
9+
10+
int eos_slot_scan_all(void);
11+
bool eos_slot_is_valid(eos_slot_id_t slot);
12+
int eos_slot_erase(eos_slot_id_t slot);
13+
14+
#ifdef __cplusplus
15+
}
16+
#endif
17+
#endif

0 commit comments

Comments
 (0)