EmbeddedEtcher
printf.h
Go to the documentation of this file.
1 
9 #ifndef OS_PRINTF_H_
10 #define OS_PRINTF_H_
11 
12 //--------------Includes-----------------
13 #include <stdio.h>
14 #include <stdarg.h>
15 #include "stm32f10x.h"
16 
17 //--------------Funtions-----------------
18 
30 int osPrintf(const char* iformat, ...);
31 
32 #endif /* OS_PRINTF_H_ */
int osPrintf(const char *iformat,...)
Definition: printf.c:227