Skip to content

Commit

Permalink
wutdevoptab: Rename all files to *fsa*.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
Maschell authored and WinterMute committed Apr 16, 2023
1 parent 0e817e4 commit e492c31
Show file tree
Hide file tree
Showing 26 changed files with 25 additions and 25 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#include "devoptab_fs.h"
#include "devoptab_fsa.h"

static devoptab_t
__wut_fs_devoptab =
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#include "devoptab_fs.h"
#include "devoptab_fsa.h"

int
__wut_fs_chdir(struct _reent *r,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#include <sys/stat.h>
#include "devoptab_fs.h"
#include "devoptab_fsa.h"

int
__wut_fs_chmod(struct _reent *r,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#include "devoptab_fs.h"
#include "devoptab_fsa.h"

int
__wut_fs_close(struct _reent *r,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#include "devoptab_fs.h"
#include "devoptab_fsa.h"

int
__wut_fs_dirclose(struct _reent *r,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#include "devoptab_fs.h"
#include "devoptab_fsa.h"

int
__wut_fs_dirnext(struct _reent *r,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#include "devoptab_fs.h"
#include "devoptab_fsa.h"

DIR_ITER *
__wut_fs_diropen(struct _reent *r,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#include "devoptab_fs.h"
#include "devoptab_fsa.h"

int
__wut_fs_dirreset(struct _reent *r,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#include "devoptab_fs.h"
#include "devoptab_fsa.h"

int
__wut_fs_fchmod(struct _reent *r,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#include "devoptab_fs.h"
#include "devoptab_fsa.h"

int
__wut_fs_fstat(struct _reent *r,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#include "devoptab_fs.h"
#include "devoptab_fsa.h"

int
__wut_fs_fsync(struct _reent *r,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#include "devoptab_fs.h"
#include "devoptab_fsa.h"

int
__wut_fs_link(struct _reent *r,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#include "devoptab_fs.h"
#include "devoptab_fsa.h"

int
__wut_fs_mkdir(struct _reent *r,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#include "devoptab_fs.h"
#include "devoptab_fsa.h"

// Extended "magic" value that allows opening files with FS_OPEN_FLAG_UNENCRYPTED in underlying FSOpenFileEx() call similar to O_DIRECTORY
#define O_UNENCRYPTED 0x4000000
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#include "devoptab_fs.h"
#include "devoptab_fsa.h"

#include <sys/param.h>

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#include "devoptab_fs.h"
#include "devoptab_fsa.h"

int
__wut_fs_rename(struct _reent *r,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#include "devoptab_fs.h"
#include "devoptab_fsa.h"

int
__wut_fs_rmdir(struct _reent *r,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#include "devoptab_fs.h"
#include "devoptab_fsa.h"

off_t
__wut_fs_seek(struct _reent *r,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#include "devoptab_fs.h"
#include "devoptab_fsa.h"

int
__wut_fs_stat(struct _reent *r,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#include "devoptab_fs.h"
#include "devoptab_fsa.h"

int
__wut_fs_statvfs(struct _reent *r,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#include "devoptab_fs.h"
#include "devoptab_fsa.h"

int
__wut_fs_ftruncate(struct _reent *r,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#include "devoptab_fs.h"
#include "devoptab_fsa.h"

int
__wut_fs_unlink(struct _reent *r,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#include "devoptab_fs.h"
#include "devoptab_fsa.h"
#include "../wutnewlib/wut_clock.h"

char *
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#include "devoptab_fs.h"
#include "devoptab_fsa.h"

int
__wut_fs_utimes(struct _reent *r,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#include "devoptab_fs.h"
#include "devoptab_fsa.h"

ssize_t __wut_fs_write(struct _reent *r, void *fd, const char *ptr, size_t len) {
if (!fd || !ptr) {
Expand Down

0 comments on commit e492c31

Please sign in to comment.