Changes in uspace/lib/c/include/vfs/vfs.h [79ae36dd:47b7006] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/include/vfs/vfs.h
r79ae36dd r47b7006 41 41 #include <stdio.h> 42 42 43 /** Libc version of the VFS triplet. 44 * 45 * Unique identification of a file system node 46 * within a file system instance. 47 * 43 /** 44 * This type is a libc version of the VFS triplet. 45 * It uniquely identifies a file system node within a file system instance. 48 46 */ 49 47 typedef struct { … … 60 58 61 59 extern int open_node(fdi_node_t *, int); 60 extern int fd_phone(int); 62 61 extern int fd_node(int, fdi_node_t *); 63 62 64 63 extern FILE *fopen_node(fdi_node_t *, const char *); 64 extern int fphone(FILE *); 65 65 extern int fnode(FILE *, fdi_node_t *); 66 66
Note:
See TracChangeset
for help on using the changeset viewer.