blob: ea81f208c71dead2bb4292916e6eb8a3a9710fc6 [file] [log] [blame]
bigbiff7b4c7a62015-01-01 19:44:14 -05001/*
2 * Copyright (C) 2013 Karel Zak <kzak@redhat.com>
3 *
4 * This file may be redistributed under the terms of the
5 * GNU Lesser General Public License.
6 */
7#include <stdio.h>
8#include <stdlib.h>
9#include <unistd.h>
10#include <string.h>
11#include <inttypes.h>
12
13#include "superblocks.h"
14
15
16const struct blkid_idinfo refs_idinfo =
17{
18 .name = "ReFS",
19 .usage = BLKID_USAGE_FILESYSTEM,
20 .magics =
21 {
22 { .magic = "\000\000\000ReFS\000", .len = 8 },
23 { NULL }
24 }
25};
26