Skip to content

Commit

Permalink
Add list of open files definiton
Browse files Browse the repository at this point in the history
  • Loading branch information
eersoy93 committed Jan 4, 2025
1 parent 7fb98a9 commit f2877e6
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions src/fs/fs.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
/* DESCRIPTION: E93 IS09660 File System Header File
* AUTHOR: Erdem Ersoy (eersoy93)
* COPYRIGHT: Copyright (c) 2025 Erdem Ersoy (eersoy93).
* LICENSE: Licensed with MIT License. See LICENSE file for details.
*/

#ifndef FS_H
#define FS_H

#include <stdint.h>

int8_t open_files_list[127] = { 0 };

#endif

0 comments on commit f2877e6

Please sign in to comment.