2025-12-05 16:57:14 +01:00
|
|
|
/*
|
|
|
|
|
* Copyright (C) Tristan Franssen, <tristanfranssen@strawhats.nl>.
|
|
|
|
|
*
|
|
|
|
|
* This software is licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
|
* You may not use this file except in compliance with the License.
|
|
|
|
|
* You may obtain a copy of the License in the file LICENSE or at
|
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
*/
|
|
|
|
|
#include "cosms-core/file.h"
|
2025-11-28 23:59:06 +01:00
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
2025-12-05 17:16:59 +01:00
|
|
|
CosmsFileError cosms_core_file_read(char *path) {
|
2025-11-28 23:59:06 +01:00
|
|
|
printf("Hello, World!");
|
2025-12-05 17:16:59 +01:00
|
|
|
return COSMS_FILE_OK;
|
2025-11-28 23:59:06 +01:00
|
|
|
}
|
|
|
|
|
|
2025-12-05 17:16:59 +01:00
|
|
|
CosmsFileError cosms_core_file_write(char *path) {
|
2025-11-28 23:59:06 +01:00
|
|
|
printf("Hello, World");
|
2025-12-05 17:16:59 +01:00
|
|
|
return COSMS_FILE_OK;
|
2025-11-28 23:59:06 +01:00
|
|
|
}
|