All checks were successful
Build documentation / build-and-deploy (push) Successful in 2m38s
15 lines
226 B
C
15 lines
226 B
C
#ifndef _CONTEXT_H
|
|
#define _CONTEXT_H
|
|
|
|
#include "strbuf.h"
|
|
|
|
#define CPRINTF_BUF_MAX (1024 * 16)
|
|
|
|
struct context {
|
|
struct strbuf strbuf;
|
|
};
|
|
|
|
void cprintf (struct context* context, const char* fmt, ...);
|
|
|
|
#endif // _CONTEXT_H
|