1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 01:07:36 +00:00

Kernel: Pass characters+length to link()

This commit is contained in:
Andreas Kling 2020-01-10 21:26:47 +01:00
parent 416c7ac2b5
commit 485443bfca
5 changed files with 35 additions and 7 deletions

View file

@ -6,6 +6,10 @@ namespace AK {
class String;
}
namespace Syscall {
struct StringArgument;
}
AK::String copy_string_from_user(const char*, size_t);
extern "C" {