From 521d01e8ad87e931af3e9a763cc84a6cf7fe5ee3 Mon Sep 17 00:00:00 2001 From: Nicholas Noll Date: Sun, 5 Dec 2021 09:47:21 -0800 Subject: Feat: basic string and memory functions Continue filling out the basic standard lib functions. Included prototypes of the str* and mem* families. Plan to add e(str|mem) and n(str|mem) variants as well. --- src/base/fmt/vnsprint.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/base/fmt/vnsprint.c') diff --git a/src/base/fmt/vnsprint.c b/src/base/fmt/vnsprint.c index 7ded908..7263c3b 100644 --- a/src/base/fmt/vnsprint.c +++ b/src/base/fmt/vnsprint.c @@ -1,7 +1,7 @@ #include "internal.h" int -fmt·vnsprint(int len, char *buf, char *fmt, va_list args) +fmt·vnsprint(char *buf, int len, char *fmt, va_list args) { fmt·State io; -- cgit v1.2.1