forked from KolibriOS/kolibrios
ace23ebbe2
git-svn-id: svn://kolibrios.org@6433 a494cfbc-eb01-0410-851d-a64ba20cac60
28 lines
409 B
C
28 lines
409 B
C
#include <stdio.h>
|
|
|
|
int fputs ( const char * str, FILE * file )
|
|
{
|
|
int rc;
|
|
|
|
if(!file || !str)
|
|
{
|
|
errno = E_INVALIDPTR;
|
|
return EOF;
|
|
}
|
|
|
|
if ((file->mode & 3)==FILE_OPEN_READ)
|
|
{
|
|
errno = E_ACCESS;
|
|
return EOF;
|
|
}
|
|
|
|
while(*str)
|
|
{
|
|
rc = fputc(*str, file);
|
|
if (rc < 0) return rc;
|
|
str++;
|
|
}
|
|
|
|
return 0;
|
|
}
|