diff options
author | Gianluca Guida <glguida@gmail.com> | 2005-01-31 12:30:05 +0000 |
---|---|---|
committer | Gianluca Guida <glguida@gmail.com> | 2005-01-31 12:30:05 +0000 |
commit | 11a61b22dd0a0a0cc80b3c8594c85fecbb5e679a (patch) | |
tree | 82cddf3ab47f4284db20a9d7e4de84494360f55d /lib.h | |
parent | ff7f04b7b3db282cba72ed16d9128a6b03816399 (diff) |
Added basic stowfs functionalities.
Diffstat (limited to 'lib.h')
-rw-r--r-- | lib.h | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -49,6 +49,11 @@ error_t dir_entries_get (file_t dir, char **dirent_data, size_t *dirent_data_size, struct dirent ***dirent_list); +char *make_filepath (char *, char *); +error_t for_each_subdir (char *, error_t (*) (char *, char *)); +error_t for_each_subdir_priv (char *, error_t (*) (char *, char *, void *), + void *); + /* Lookup the file named NAME beneath DIR (or the cwd, if DIR is not a valid port. Try to open with FLAGS0 first, and if that fails with FLAGS1; MODE is the mode to user for newly created files. On |