ls1x-master-v0.4/public/ls1x_printf.h
2024-11-27 15:39:05 +08:00

18 lines
259 B
C

#ifndef _LS1X_PRINTF_H_
#define _LS1X_PRINTF_H_
#include "test.h"
#define max(a,b) (((a)>(b))?(a):(b))
int sprintf(char *str, const char *format, ...) ;
int myprintf(char *fmt,...);
void myputchar(unsigned char chr);
INT8U mygetchar(void);
#endif