SAM4S-EK_FreeRTOS+FAT-SL  1.0
An example project to test the functionality of FreeRTOS+FAT-SL using SD card as data storage medium
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Macros Modules
printf_stdarg.h
Go to the documentation of this file.
1 #ifndef PRINTF_STDARG_HPP_
2 #define PRINTF_STDARG_HPP_
3 
4 #include "sam4.h"
5 
6 int pchar (const char char_data);
7 int gchar (uint8_t *puc_data);
8 int printf(const char *format, ...);
9 int sprintf(char *out, const char *format, ...);
10 int snprintf( char *buf, unsigned int count, const char *format, ... );
11 
12 #endif
int sprintf(char *out, const char *format,...)
int printf(const char *format,...)
int pchar(const char char_data)
Definition: printf_stdarg.c:37
int gchar(uint8_t *puc_data)
Definition: printf_stdarg.c:46
int snprintf(char *buf, unsigned int count, const char *format,...)