0761153d24
- 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
10 lines
302 B
C
10 lines
302 B
C
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
// Copyright (c) 2025 0xKarinyash
|
|
|
|
#pragma once
|
|
#include <types.h>
|
|
|
|
i32 strcmp(const char* s1, const char* s2);
|
|
i32 strncmp(const char* s1, const char* s2, u64 n);
|
|
char* strcpy(char* dest, const char* src);
|
|
char* strncpy(char* dest, const char* src, u64 n); |