meta: rename
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
#ifndef SOCKS_LIBC_TYPES_H_
|
||||
#define SOCKS_LIBC_TYPES_H_
|
||||
#ifndef MANGO_LIBC_TYPES_H_
|
||||
#define MANGO_LIBC_TYPES_H_
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
@@ -1,5 +1,5 @@
|
||||
#ifndef SOCKS_STDIO_H_
|
||||
#define SOCKS_STDIO_H_
|
||||
#ifndef MANGO_STDIO_H_
|
||||
#define MANGO_STDIO_H_
|
||||
|
||||
#include <stdarg.h>
|
||||
#include <stddef.h>
|
||||
@@ -1,5 +1,5 @@
|
||||
#ifndef SOCKS_LIBC_STRING_H_
|
||||
#define SOCKS_LIBC_STRING_H_
|
||||
#ifndef MANGO_LIBC_STRING_H_
|
||||
#define MANGO_LIBC_STRING_H_
|
||||
|
||||
#include <stdint.h>
|
||||
#include <stddef.h>
|
||||
@@ -30,7 +30,7 @@
|
||||
//
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
#include <socks/console.h>
|
||||
#include <mango/console.h>
|
||||
#include <stdbool.h>
|
||||
#include <stdint.h>
|
||||
#include <stddef.h>
|
||||
|
||||
@@ -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)
|
||||
{
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
#include <socks/libc/string.h>
|
||||
#include <mango/libc/string.h>
|
||||
|
||||
char *strcpy(char *output, const char *input)
|
||||
{
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
#include <socks/libc/string.h>
|
||||
#include <mango/libc/string.h>
|
||||
|
||||
size_t strlen(const char *str) {
|
||||
size_t res = 0;
|
||||
|
||||
@@ -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);
|
||||
|
||||
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user