29 lines
559 B
C
29 lines
559 B
C
// SPDX-License-Identifier: GPL-2.0+
|
|
/*
|
|
* erofs-utils/lib/blobchunk.h
|
|
*
|
|
* Copyright (C) 2021, Alibaba Cloud
|
|
*/
|
|
#ifndef __EROFS_BLOBCHUNK_H
|
|
#define __EROFS_BLOBCHUNK_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
{
|
|
#endif
|
|
|
|
#include "erofs/internal.h"
|
|
|
|
int erofs_blob_write_chunk_indexes(struct erofs_inode *inode, erofs_off_t off);
|
|
int erofs_blob_write_chunked_file(struct erofs_inode *inode);
|
|
int erofs_blob_remap(void);
|
|
void erofs_blob_exit(void);
|
|
int erofs_blob_init(const char *blobfile_path);
|
|
int erofs_generate_devtable(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|