meta: rename

This commit is contained in:
2024-11-02 11:31:51 +00:00
parent 065fdeec65
commit 62ec4c93ab
140 changed files with 422 additions and 857 deletions

View File

@@ -1,5 +1,5 @@
#include <stdint.h>
#include <socks/libc/string.h>
#include <mango/libc/string.h>
static void *memcpy_r(void *dest, const void *src, size_t sz)
{

View File

@@ -1,4 +1,4 @@
#include <socks/libc/string.h>
#include <mango/libc/string.h>
char *strcat(char *dest, const char *src) {
size_t start = strlen(dest), i = 0;

View File

@@ -1,4 +1,4 @@
#include <socks/libc/string.h>
#include <mango/libc/string.h>
char *strcpy(char *output, const char *input)
{

View File

@@ -1,4 +1,4 @@
#include <socks/libc/string.h>
#include <mango/libc/string.h>
size_t strlen(const char *str) {
size_t res = 0;

View File

@@ -1,4 +1,4 @@
#include <socks/libc/string.h>
#include <mango/libc/string.h>
char *strrchr(const char *str, int c) {
size_t len = strlen(str);

View File

@@ -1,5 +1,5 @@
#include <limits.h>
#include <socks/libc/string.h>
#include <mango/libc/string.h>
#define ALIGN (sizeof(size_t))
#define ONES ((size_t)-1 / UCHAR_MAX)