Files
mop3/ce/context.h
kamkow1 c8fb575bdd
All checks were successful
Build ISO image / build-and-deploy (push) Successful in 2m7s
Build documentation / build-and-deploy (push) Successful in 39s
Change formatting rules
2026-04-24 01:54:48 +02:00

15 lines
225 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