Subversion Repositories HelenOS-historic

Compare Revisions

Ignore whitespace Rev 1622 → Rev 1623

/uspace/trunk/libc/generic/io/snprintf.c
30,6 → 30,12
#include <stdio.h>
#include <io/printf_core.h>
 
/** Print formatted to the given buffer with limited size.
* @param str buffer
* @param size buffer size
* @param fmt format string
* \see For more details about format string see printf_core.
*/
int snprintf(char *str, size_t size, const char *fmt, ...)
{
int ret;