blob: 4bffa34f9a58ad4c28dc2d87df1f540de1bdc0c8 [file] [log] [blame]
/*
* initfs.h
*
* TFFS_mount TFFS_mkfs implementation.
* head file.
*
* Copyright (C) knightray@gmail.com
*
* SPDX-License-Identifier: GPL-2.0+
*/
#ifndef _INIT_FS_H
#define _INIT_FS_H
#include "comdef.h"
#include "pubstruct.h"
/*
* Function prototype
*/
int32
_validate_bs(
IN boot_sector_t * pbs
);
void
_parse_boot_sector(
IN boot_sector_t * pbs,
OUT tffs_t * tffs
);
#endif