colla/format.h
2024-11-29 16:10:48 +01:00

13 lines
316 B
C

#pragma once
#include <stdarg.h>
#include "collatypes.h"
typedef struct arena_t arena_t;
int fmtPrint(const char *fmt, ...);
int fmtPrintv(const char *fmt, va_list args);
int fmtBuffer(char *buffer, usize buflen, const char *fmt, ...);
int fmtBufferv(char *buffer, usize buflen, const char *fmt, va_list args);