aboutsummaryrefslogtreecommitdiff
path: root/src/Platform/Dummy/File.c
diff options
context:
space:
mode:
authorMikhail Romanko <me@blankhex.com>2025-11-08 18:50:13 +0300
committerMikhail Romanko <me@blankhex.com>2025-11-08 18:50:13 +0300
commit6d02598e20a126ea159ef4529340b93e5fa7b5ea (patch)
tree09f6f4e971ed3cb43ec8f86fe73da2b3d5d26ff0 /src/Platform/Dummy/File.c
parent44057e96f33f110cf182ef7df697b21e779e5aae (diff)
downloadbhlib-6d02598e20a126ea159ef4529340b93e5fa7b5ea.tar.gz
Add IO type checking functions, add ReadLine
Diffstat (limited to 'src/Platform/Dummy/File.c')
-rw-r--r--src/Platform/Dummy/File.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/Platform/Dummy/File.c b/src/Platform/Dummy/File.c
index 5e5b515..d12a8fb 100644
--- a/src/Platform/Dummy/File.c
+++ b/src/Platform/Dummy/File.c
@@ -13,3 +13,9 @@ BH_IO *BH_FileNew(const char *path,
return NULL;
}
+
+
+int BH_IOIsFile(BH_IO *device)
+{
+ return 0;
+}