
This patch introduces a helpful copy_string_from_user() function that takes a bounded null-terminated string from userspace memory and copies it into a String object.
34 lines
939 B
C++
34 lines
939 B
C++
#pragma once
|
|
|
|
#include <AK/Types.h>
|
|
|
|
namespace AK {
|
|
class String;
|
|
}
|
|
|
|
AK::String copy_string_from_user(const char*, size_t);
|
|
|
|
extern "C" {
|
|
|
|
static_assert(sizeof(size_t) == 4);
|
|
|
|
void* copy_to_user(void*, const void*, size_t);
|
|
void* copy_from_user(void*, const void*, size_t);
|
|
void* memset_user(void*, int, size_t);
|
|
|
|
void* memcpy(void*, const void*, size_t);
|
|
char* strcpy(char*, const char*);
|
|
char* strncpy(char*, const char*, size_t);
|
|
int strncmp(const char* s1, const char* s2, size_t n);
|
|
int strcmp(char const*, const char*);
|
|
size_t strlen(const char*);
|
|
size_t strnlen(const char*, size_t);
|
|
void* memset(void*, int, size_t);
|
|
char* strdup(const char*);
|
|
int memcmp(const void*, const void*, size_t);
|
|
char* strrchr(const char* str, int ch);
|
|
void* memmove(void* dest, const void* src, size_t n);
|
|
|
|
inline u16 ntohs(u16 w) { return (w & 0xff) << 8 | ((w >> 8) & 0xff); }
|
|
inline u16 htons(u16 w) { return (w & 0xff) << 8 | ((w >> 8) & 0xff); }
|
|
}
|