Make tests public. Rewrite most tests. Add tests.
[pintos-anon] / src / filesys / directory.h
1 #ifndef FILESYS_DIRECTORY_H
2 #define FILESYS_DIRECTORY_H
3
4 #include <stdbool.h>
5 #include <stddef.h>
6 #include "devices/disk.h"
7
8 /* Maximum length of a file name component.
9    This is the traditional UNIX maximum length.
10    After directories are implemented, this maximum length may be
11    retained, but much longer full path names must be allowed. */
12 #define NAME_MAX 14
13
14 struct inode;
15 struct dir;
16 bool dir_create (disk_sector_t sector, size_t entry_cnt);
17 bool dir_open (struct inode *, struct dir **);
18 bool dir_open_root (struct dir **);
19 void dir_close (struct dir *);
20 bool dir_lookup (const struct dir *, const char *name, struct inode **);
21 bool dir_add (struct dir *, const char *name, disk_sector_t);
22 bool dir_remove (struct dir *, const char *name);
23 void dir_list (const struct dir *);
24
25 #endif /* filesys/directory.h */