Files
termOS/kernel/inc/fs/cpio.h
T
Karina 0761153d24 feat: implement initial CPIO parsing and shell improvements
- core: added CPIO parser (fs/cpio.c) and VFS structs

- shell: refactored ksh, added 'help' command

- lib: added string utils (strcpy, strncpy, strncmp)

- wip: working on initramfs loading in kmain
2026-01-28 02:04:40 +04:00

8 lines
236 B
C

// SPDX-License-Identifier: GPL-3.0-or-later
// Copyright (c) 2026 0xKarinyash
#pragma once
#include <types.h>
#include <fs/vfs.h>
u64 cpio_read(fs_node* node, u64 offset, u64 size, u8* buff);
fs_node* cpio_mount(void* base, u64 size);