toes/xsnprintf.h
2026-05-12 23:33:02 -07:00

7 lines
180 B
C

#pragma once
#include <stdarg.h>
#include <stddef.h>
#include "macros.h"
size_t xsnprintf(char *restrict buf, size_t n, const char *restrict format, ...) PRINTF(3) NONNULL_ARGS;