cosms-core/src/file.c

20 lines
528 B
C
Raw Normal View History

/*
* 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"
#include <stdio.h>
void cosms_core_file_read(char *path) {
printf("Hello, World!");
}
void cosms_core_file_write(char *path) {
printf("Hello, World");
}