Moving libc from its separate repo into this one, minor resulting build fixes, and a hacky way to add -I for libc headers in builds.
43 lines
1.1 KiB
C
43 lines
1.1 KiB
C
/* fputs( const char *, FILE * )
|
|
|
|
This file is part of the Public Domain C Library (PDCLib).
|
|
Permission is granted to use, modify, and / or redistribute at will.
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
#include "j6libc/glue.h"
|
|
|
|
int fputs( const char * restrict s, struct _PDCLIB_file_t * restrict stream )
|
|
{
|
|
if ( _PDCLIB_prepwrite( stream ) == EOF )
|
|
{
|
|
return EOF;
|
|
}
|
|
while ( *s != '\0' )
|
|
{
|
|
/* Unbuffered and line buffered streams get flushed when fputs() does
|
|
write the terminating end-of-line. All streams get flushed if the
|
|
buffer runs full.
|
|
*/
|
|
stream->buffer[ stream->bufidx++ ] = *s;
|
|
if ( ( stream->bufidx == stream->bufsize ) ||
|
|
( ( stream->status & _IOLBF ) && *s == '\n' )
|
|
)
|
|
{
|
|
if ( _PDCLIB_flushbuffer( stream ) == EOF )
|
|
{
|
|
return EOF;
|
|
}
|
|
}
|
|
++s;
|
|
}
|
|
if ( stream->status & _IONBF )
|
|
{
|
|
if ( _PDCLIB_flushbuffer( stream ) == EOF )
|
|
{
|
|
return EOF;
|
|
}
|
|
}
|
|
return 0;
|
|
}
|