#include <oskit/fs/filesystem.h>oskit_error_t oskit_filesystem_lookupi(oskit_filesystem_t *f, oskit_ino_t ino, [out] oskit_file_t **out_file);
client OS filesystem library
This method looks up a file given its inode number. If the inode number is invalid, the behavior is undefined.
- f
- The filesystem to find the inode in.
- ino
- The inode number of the file to find.
- out_file
- Upon success, will point to a oskit_file_t for the file.
Returns 0 on success, or an error code specified in <oskit/error.h>, on error.