dav/system.h

changeset 574
c36eddf167a8
parent 448
3bef733c55b3
child 576
62cc92445234
equal deleted inserted replaced
573:b8f798d240ab 574:c36eddf167a8
74 void sys_closedir(SYS_DIR dir); 74 void sys_closedir(SYS_DIR dir);
75 75
76 FILE* sys_fopen(const char *path, const char *mode); 76 FILE* sys_fopen(const char *path, const char *mode);
77 77
78 int sys_stat(const char *path, SYS_STAT *s); 78 int sys_stat(const char *path, SYS_STAT *s);
79 int sys_lstat(const char *path, SYS_STAT *s);
79 80
80 int sys_rename(const char *oldpath, const char *newpath); 81 int sys_rename(const char *oldpath, const char *newpath);
81 int sys_unlink(const char *path); 82 int sys_unlink(const char *path);
82 int sys_mkdir(const char *path); 83 int sys_mkdir(const char *path);
84
85 ssize_t sys_readlink(const char *path, char *buffer, size_t size);
83 86
84 #ifdef __cplusplus 87 #ifdef __cplusplus
85 } 88 }
86 #endif 89 #endif
87 90

mercurial