Files
jsix_import/src/libraries/libc/stdio/fputs.c
Justin C. Miller 95a35cd0bf [libc] Bring libc in-tree
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.
2020-08-23 17:21:08 -07:00

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;
}