Split CE code into multiple files
All checks were successful
Build documentation / build-and-deploy (push) Successful in 2m38s
All checks were successful
Build documentation / build-and-deploy (push) Successful in 2m38s
This commit is contained in:
14
ce/context.h
Normal file
14
ce/context.h
Normal file
@@ -0,0 +1,14 @@
|
||||
#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
|
||||
Reference in New Issue
Block a user