Usermode/libc - Fix strchr and strrchr behavior
[tpg/acess2.git] / Usermode / Libraries / libc.so_src / stdio_files.c
1 /*
2  * Acess2 C Library
3  * - By John Hodge (thePowersGang)
4  *
5  * stdio_files.c
6  * - non-stream file manipulation
7  */
8 #include <stdio.h>
9 #include <acess/sys.h>  // _SysDebug
10
11 // === CODE ===
12 int remove(const char *filename)
13 {
14         _SysDebug("TODO: libc remove('%s')", filename);
15         return 1;
16 }
17
18 int rename(const char *old, const char *new)
19 {
20         _SysDebug("TODO: libc rename('%s','%s')", old, new);
21         return 1;
22 }
23

UCC git Repository :: git.ucc.asn.au