2013-07-20 08:10:06 -04:00
|
|
|
/*******************************************************************************
|
|
|
|
|
2015-12-01 16:16:55 -05:00
|
|
|
Copyright(C) Jonas 'Sortie' Termansen 2013, 2014, 2015.
|
2013-07-20 08:10:06 -04:00
|
|
|
|
|
|
|
This file is part of the Sortix C Library.
|
|
|
|
|
|
|
|
The Sortix C Library is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU Lesser General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or (at your
|
|
|
|
option) any later version.
|
|
|
|
|
|
|
|
The Sortix C Library is distributed in the hope that it will be useful, but
|
|
|
|
WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
|
|
|
or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
|
|
|
|
License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Lesser General Public License
|
|
|
|
along with the Sortix C Library. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
stdio/vdprintf.cpp
|
|
|
|
Prints a formatted string to a file descriptor.
|
|
|
|
|
|
|
|
*******************************************************************************/
|
|
|
|
|
2014-04-05 12:26:11 -04:00
|
|
|
#include <ioleast.h>
|
2013-07-20 08:10:06 -04:00
|
|
|
#include <stdarg.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
2015-12-01 16:16:55 -05:00
|
|
|
static size_t vdprintf_callback(void* fdptr, const char* string, size_t length)
|
2013-07-20 08:10:06 -04:00
|
|
|
{
|
2015-12-01 16:16:55 -05:00
|
|
|
return writeall(*(int*) fdptr, string, length);
|
2013-07-20 08:10:06 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
extern "C" int vdprintf(int fd, const char* restrict format, va_list list)
|
|
|
|
{
|
2015-12-01 16:16:55 -05:00
|
|
|
return vcbprintf(&fd, vdprintf_callback, format, list);
|
2013-07-20 08:10:06 -04:00
|
|
|
}
|