From d07bd08dd0446e8c41eccaccbb07e9112200e8ee Mon Sep 17 00:00:00 2001 From: Ada Christine Date: Sun, 24 May 2026 11:09:31 +0000 Subject: rename and move, function renames in stdio --- api/lib/kstdio.h | 18 ------------------ api/lib/kstring.h | 14 -------------- 2 files changed, 32 deletions(-) delete mode 100644 api/lib/kstdio.h delete mode 100644 api/lib/kstring.h (limited to 'api') diff --git a/api/lib/kstdio.h b/api/lib/kstdio.h deleted file mode 100644 index 80e47cc..0000000 --- a/api/lib/kstdio.h +++ /dev/null @@ -1,18 +0,0 @@ -#pragma once - -#include - -#include - -typedef struct FILE FILE; - -extern FILE *kstdout; -extern FILE *kstderr; - -extern int kfputc(int c, FILE *f); - -int kvfprintf(FILE *f, const char *restrict format, va_list arguments); -int kfprintf(FILE *f, const char *restrict format, ...); -int kvprintf(const char *restrict format, va_list arguments); -int kprintf(const char *restrict format, ...); - diff --git a/api/lib/kstring.h b/api/lib/kstring.h deleted file mode 100644 index c28e17c..0000000 --- a/api/lib/kstring.h +++ /dev/null @@ -1,14 +0,0 @@ -#pragma once - -#include - -void *memcpy(void *dest, const void *src, size_t size); -void *memmove(void *dest, const void *src, size_t size); -void *memset(void *dest, int val, size_t size); -int memcmp(const void *str1, const void *str2, size_t count); -size_t strlen(const char *s); -unsigned long long strtoull( - const char *restrict begin, - char **restrict end, - int base); - -- cgit v1.3.1-1-g115d