Split libc/stdio/print.cpp into multiple files.

This commit is contained in:
Jonas 'Sortie' Termansen 2013-07-20 13:35:19 +02:00
parent 2f49694031
commit edce6b9c2b
5 changed files with 111 additions and 33 deletions

View File

@ -261,12 +261,13 @@ stdio/fdio.o \
stdio/fgetpos.o \
stdio/fileno.o \
stdio/fpipe.o \
stdio/fprintf.o \
stdio/freopen.o \
stdio/fsetpos.o \
stdio/getc.o \
stdio/perror.o \
stdio/popen.o \
stdio/print.o \
stdio/printf.o \
stdio/putc.o \
stdio/removeat.o \
stdio/remove.o \
@ -276,6 +277,8 @@ stdio/scanf.o \
stdio/stdio.o \
stdio/tmpfile.o \
stdio/tmpnam.o \
stdio/vfprintf.o \
stdio/vprintf.o \
stdio/vscanf.o \
stdlib/canonicalize_file_name_at.o \
stdlib/canonicalize_file_name.o \

35
libc/stdio/fprintf.cpp Normal file
View File

@ -0,0 +1,35 @@
/*******************************************************************************
Copyright(C) Jonas 'Sortie' Termansen 2011, 2012, 2013.
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/fprintf.cpp
Prints a string to a FILE.
*******************************************************************************/
#include <stdarg.h>
#include <stdio.h>
extern "C" int fprintf(FILE* fp, const char* restrict format, ...)
{
va_list list;
va_start(list, format);
int result = vfprintf(fp, format, list);
va_end(list);
return result;
}

35
libc/stdio/printf.cpp Normal file
View File

@ -0,0 +1,35 @@
/*******************************************************************************
Copyright(C) Jonas 'Sortie' Termansen 2011, 2012, 2013.
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/printf.cpp
Prints a string to stdout.
*******************************************************************************/
#include <stdarg.h>
#include <stdio.h>
extern "C" int printf(const char* restrict format, ...)
{
va_list list;
va_start(list, format);
int result = vprintf(format, list);
va_end(list);
return result;
}

View File

@ -1,6 +1,6 @@
/*******************************************************************************
Copyright(C) Jonas 'Sortie' Termansen 2011, 2012.
Copyright(C) Jonas 'Sortie' Termansen 2011, 2012, 2013.
This file is part of the Sortix C Library.
@ -17,50 +17,24 @@
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/print.cpp
Provides the stubs for the printf family of functions.
stdio/vfprintf.cpp
Prints a string to a FILE.
*******************************************************************************/
#include <stdarg.h>
#include <stdint.h>
#include <stdio.h>
#include <string.h>
#include <unistd.h>
#include <stdint.h>
static size_t FileWriteCallback(void* user, const char* string, size_t stringlen)
{
FILE* fp = (FILE*) user;
return fwrite(string, 1, stringlen, fp);
return fwrite(string, sizeof(char), stringlen, (FILE*) user);
}
extern "C" int vfprintf(FILE* fp, const char* /*restrict*/ format, va_list list)
extern "C" int vfprintf(FILE* fp, const char* restrict format, va_list list)
{
size_t result = vprintf_callback(FileWriteCallback, fp, format, list);
if ( result == SIZE_MAX )
return -1;
return (int) result;
}
extern "C" int fprintf(FILE* fp, const char* /*restrict*/ format, ...)
{
va_list list;
va_start(list, format);
int result = vfprintf(fp, format, list);
va_end(list);
return result;
}
extern "C" int vprintf(const char* /*restrict*/ format, va_list list)
{
return vfprintf(stdout, format, list);
}
extern "C" int printf(const char* /*restrict*/ format, ...)
{
va_list list;
va_start(list, format);
int result = vprintf(format, list);
va_end(list);
return result;
}

31
libc/stdio/vprintf.cpp Normal file
View File

@ -0,0 +1,31 @@
/*******************************************************************************
Copyright(C) Jonas 'Sortie' Termansen 2011, 2012, 2013.
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/vprintf.cpp
Prints a string to stdout.
*******************************************************************************/
#include <stdarg.h>
#include <stdio.h>
extern "C" int vprintf(const char* restrict format, va_list list)
{
return vfprintf(stdout, format, list);
}