aboutsummaryrefslogtreecommitdiffhomepage
path: root/std.h
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2025-07-31 01:57:36 +0900
committernsfisis <nsfisis@gmail.com>2025-08-15 10:04:46 +0900
commit021b726b518a907ae023f40131d58964dbceea01 (patch)
treefe3ab2918ffe1513a6fedb9f5ec36acee0095052 /std.h
parent3ae75a0dec8cfb66ee53cbfaa6598d7fbf2f14d8 (diff)
downloadducc-021b726b518a907ae023f40131d58964dbceea01.tar.gz
ducc-021b726b518a907ae023f40131d58964dbceea01.tar.zst
ducc-021b726b518a907ae023f40131d58964dbceea01.zip
feat: support macros that are expanded to multiple tokens
Diffstat (limited to 'std.h')
-rw-r--r--std.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/std.h b/std.h
index e194848..ecffad7 100644
--- a/std.h
+++ b/std.h
@@ -21,6 +21,7 @@ int isdigit(int);
int isspace(int);
void* memcpy(void*, void*, size_t);
void* memmove(void*, void*, size_t);
+void* memset(void*, int, size_t);
int printf(const char*, ...);
int sprintf(char*, const char*, ...);
int strcmp(const char*, const char*);