mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-12 04:22:28 +00:00
Integrate ext2 from VFS into Kernel.
This commit is contained in:
parent
aec8ab0a60
commit
9171521752
Notes:
sideshowbarker
2024-07-19 18:47:14 +09:00
Author: https://github.com/awesomekling
Commit: 9171521752
45 changed files with 662 additions and 1085 deletions
|
@ -2,9 +2,10 @@
|
|||
|
||||
#include "types.h"
|
||||
|
||||
void memcpy(void *, const void *, DWORD);
|
||||
void strcpy(char *, const char *);
|
||||
int strcmp(char const *, const char *);
|
||||
DWORD strlen(const char *) PURE;
|
||||
void *memset(void *, BYTE, DWORD);
|
||||
char *strdup(const char *);
|
||||
void memcpy(void*, const void*, DWORD);
|
||||
void strcpy(char*, const char*);
|
||||
int strcmp(char const*, const char*);
|
||||
DWORD strlen(const char*);
|
||||
void *memset(void*, BYTE, DWORD);
|
||||
char *strdup(const char*);
|
||||
int memcmp(const void*, const void*, size_t);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue