(root)/
util-linux-2.39/
libblkid/
src/
superblocks/
refs.c
       1  /*
       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  
      16  const 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