diff options
| author | Amlal El Mahrouss <amlal@nekernel.org> | 2026-01-12 14:51:30 +0100 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal@nekernel.org> | 2026-01-12 14:51:30 +0100 |
| commit | 04abfb60bc52b7b4235202e0c409821cc63c585a (patch) | |
| tree | 90a2fe910d10e4f550e423c6002935fefeab538f /include/fd.h | |
| parent | 4243516705e4a18cbab62a94975a0d992b21a51e (diff) | |
feat: Update 30-PIN specs and implementation. Breaking API changes in
NeBoot as well.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'include/fd.h')
| -rw-r--r-- | include/fd.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/fd.h b/include/fd.h index c1dfff4..f0d99a3 100644 --- a/include/fd.h +++ b/include/fd.h @@ -22,9 +22,9 @@ typedef struct _nb_file_descriptor { int (*f_rewind)(struct _nb_file_descriptor* self); int (*f_eof)(struct _nb_file_descriptor* self); int (*f_close)(struct _nb_file_descriptor* self); -} cb_file_descriptor_t; +} nb_file_descriptor_t; /// @brief Grabs a new device reference. /// @param path the device path. /// @return -cb_file_descriptor_t* cb_grab_fd(const char* path); +nb_file_descriptor_t* nb_grab_fd(const char* path); |
