mmmmh
This commit is contained in:
parent
82aee127b0
commit
a92b119549
99 changed files with 6922 additions and 5723 deletions
13
format.h
Normal file
13
format.h
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
#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);
|
||||
Loading…
Add table
Add a link
Reference in a new issue