stdio.c
Default mainpageat91libutilitystdio.c
Description Overview
Methods Brief description
 fprintf Outputs a formatted string on the given stream, using a variable number of arguments.
 printf Outputs a formatted string on the DBGU stream, using a variable number of arguments.
 puts Outputs a string on stdout.
 snprintf Stores the result of a formatted string into another string.
 sprintf Writes a formatted string inside another string.
 vfprintf Outputs a formatted string on the given stream.
 vprintf Outputs a formatted string on the DBGU stream.
 vsnprintf Stores the result of a formatted string into another string.
 vsprintf Stores the result of a formatted string into another string.