Files
kubedoom/dockerdoom/trunk/wince/fileops.h
2019-09-01 14:14:08 +01:00

15 lines
317 B
C

//
// "Extension" implementation of ANSI C file functions for Windows CE.
//
// I (Simon Howard) release this file to the public domain.
//
#ifndef WINCE_FILEOPS_H
#define WINCE_FILEOPS_H
int remove(const char *pathname);
int rename(const char *oldpath, const char *newpath);
#endif /* #ifndef WINCE_FILEOPS_H */