10 lines
154 B
C
10 lines
154 B
C
#ifndef EMSPRINTF_H
|
|
#define EMSPRINTF_H
|
|
|
|
#include <stdarg.h>
|
|
#include <stdio.h>
|
|
|
|
void EMsprintf(char *str,const char *format, ...);
|
|
|
|
#endif //EMSPRINTF_H
|