All checks were successful
Build documentation / build-and-deploy (push) Successful in 2m38s
11 lines
161 B
C
11 lines
161 B
C
#ifndef _MPRINTF_H
|
|
#define _MPRINTF_H
|
|
|
|
#include "context.h"
|
|
|
|
#define MPRINTF_BUF_MAX CPRINTF_BUF_MAX
|
|
|
|
void mprintf (const char* fmt, ...);
|
|
|
|
#endif // _MPRINTF_H
|