File: dir.h

package info (click to toggle)
apfsprogs 0.2.1-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 1,108 kB
  • sloc: ansic: 16,034; makefile: 175; sh: 57
file content (19 lines) | stat: -rw-r--r-- 511 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/*
 * Copyright (C) 2019 Ernesto A. Fernández <ernesto.mnd.fernandez@gmail.com>
 */

#ifndef _DIR_H
#define _DIR_H

#include <apfs/types.h>

extern void make_special_dir_dentry(u64 ino, char *name,
				    struct apfs_kvloc **next_toc,
				    void *key_area, void **key,
				    void *val_area_end, void **val_end);
extern void make_special_dir_inode(u64 ino, char *name,
				   struct apfs_kvloc **next_toc,
				   void *key_area, void **key,
				   void *val_area_end, void **val_end);

#endif	/* _DIR_H */