summaryrefslogtreecommitdiffstats
path: root/libblkid/src/superblocks/refs.c
blob: ea81f208c71dead2bb4292916e6eb8a3a9710fc6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/*
 * Copyright (C) 2013 Karel Zak <kzak@redhat.com>
 *
 * This file may be redistributed under the terms of the
 * GNU Lesser General Public License.
 */
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
#include <inttypes.h>

#include "superblocks.h"


const struct blkid_idinfo refs_idinfo =
{
	.name		= "ReFS",
	.usage		= BLKID_USAGE_FILESYSTEM,
	.magics		=
	{
		{ .magic = "\000\000\000ReFS\000", .len = 8 },
		{ NULL }
	}
};