/
niceSOFT
/
util-linux
Обзор
Документация
Войти
/
niceSOFT
/
util-linux
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
libblkid/src/superblocks/refs.c
25 строк
461 B
Karel Zak
libblkid: add ReFS magic string
14 май 2013, 17:53
14 май 2013, 17:53
84992b8
Код
Авторство
О чём код?
/* * 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 } } };