aboutsummaryrefslogtreecommitdiff
path: root/src/cyn_file_std.c
diff options
context:
space:
mode:
authorbonmas14 <bonmas14@gmail.com>2025-09-25 14:17:07 +0300
committerbonmas14 <bonmas14@gmail.com>2025-09-25 14:17:07 +0300
commit166877cf15f6afa89c9f8a61e267d485868d0ee1 (patch)
tree9f080314edc4fb293f91227cdc1c01cfec8d7bae /src/cyn_file_std.c
parent8ebdc95621bc61fdf3c98cd7ae4ddca67398df23 (diff)
downloadungrateful-166877cf15f6afa89c9f8a61e267d485868d0ee1.tar.gz
ungrateful-166877cf15f6afa89c9f8a61e267d485868d0ee1.zip
+disgrace and rework of ungrateful.h
Diffstat (limited to 'src/cyn_file_std.c')
-rw-r--r--src/cyn_file_std.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/cyn_file_std.c b/src/cyn_file_std.c
new file mode 100644
index 0000000..3106818
--- /dev/null
+++ b/src/cyn_file_std.c
@@ -0,0 +1,10 @@
+
+File_Handle *cyn_file_open(String path, File_Status *status) {
+ UNUSED(path);
+
+ if (status != NULL) {
+ *status = CYN_FILE_ERROR;
+ }
+
+ return NULL;
+}