]> git.ipfire.org Git - thirdparty/xfsprogs-dev.git/blame - include/parent.h
xfsprogs: convert to SPDX license tags
[thirdparty/xfsprogs-dev.git] / include / parent.h
CommitLineData
959ef981 1// SPDX-License-Identifier: LGPL-2.1
258b00ea
TS
2/*
3 * Copyright (c) 2005 Silicon Graphics, Inc.
4 * All Rights Reserved.
258b00ea
TS
5 */
6#ifndef __PARENT_H__
7#define __PARENT_H__
8
9typedef struct parent {
10 __u64 p_ino;
11 __u32 p_gen;
12 __u16 p_reclen;
13 char p_name[1];
14} parent_t;
15
16typedef struct parent_cursor {
17 __u32 opaque[4]; /* an opaque cookie */
18} parent_cursor_t;
19
20#endif