2007-10-15 11:42:17 +02:00
|
|
|
#include <stdio.h>
|
2006-09-07 16:14:53 +02:00
|
|
|
int fputc(int c,FILE* file)
|
|
|
|
{
|
2007-08-24 21:49:07 +02:00
|
|
|
dword res;
|
2016-05-19 14:15:22 +02:00
|
|
|
if(!file)
|
|
|
|
{
|
|
|
|
errno = E_INVALIDPTR;
|
|
|
|
return EOF;
|
|
|
|
}
|
2007-08-24 21:49:07 +02:00
|
|
|
|
2016-05-19 14:15:22 +02:00
|
|
|
if ((file->mode & 3)==FILE_OPEN_READ)
|
|
|
|
{
|
|
|
|
errno = E_ACCESS;
|
|
|
|
return EOF;
|
|
|
|
}
|
2007-08-24 21:49:07 +02:00
|
|
|
|
|
|
|
file->buffer[0]=c;
|
2006-09-07 16:14:53 +02:00
|
|
|
if ((file->mode & 3)==FILE_OPEN_APPEND)
|
|
|
|
{
|
2007-08-24 21:49:07 +02:00
|
|
|
file->filepos=file->filesize;
|
2006-09-07 16:14:53 +02:00
|
|
|
file->filesize++;
|
2007-08-24 21:49:07 +02:00
|
|
|
res=_ksys_appendtofile(file->filename,file->filepos,1,file->buffer);
|
2016-05-19 14:15:22 +02:00
|
|
|
if (res!=0)
|
|
|
|
{
|
|
|
|
errno = -res;
|
|
|
|
return EOF;
|
|
|
|
}
|
2007-08-24 21:49:07 +02:00
|
|
|
file->filepos++;
|
2016-05-19 14:15:22 +02:00
|
|
|
return c;
|
2007-08-24 21:49:07 +02:00
|
|
|
}
|
|
|
|
if ((file->mode & 3)==FILE_OPEN_WRITE)
|
|
|
|
{
|
|
|
|
if (file->filepos==0)
|
2016-05-19 14:15:22 +02:00
|
|
|
{ //file not created
|
2007-08-24 21:49:07 +02:00
|
|
|
res=_ksys_rewritefile(file->filename,1,file->buffer);
|
2016-05-19 14:15:22 +02:00
|
|
|
if (res!=0)
|
|
|
|
{
|
|
|
|
errno = -res;
|
|
|
|
return EOF;
|
|
|
|
}
|
2007-08-24 21:49:07 +02:00
|
|
|
file->filepos++;
|
2016-05-19 14:15:22 +02:00
|
|
|
return c;
|
2007-08-24 21:49:07 +02:00
|
|
|
}
|
|
|
|
else
|
2016-05-19 14:15:22 +02:00
|
|
|
{ //file created and need append one byte
|
2007-08-24 21:49:07 +02:00
|
|
|
res=_ksys_appendtofile(file->filename,file->filepos,1,file->buffer);
|
2016-05-19 14:15:22 +02:00
|
|
|
if (res!=0)
|
|
|
|
{
|
|
|
|
errno = -res;
|
|
|
|
return EOF;
|
|
|
|
}
|
2007-08-24 21:49:07 +02:00
|
|
|
file->filepos++;
|
2016-05-19 14:15:22 +02:00
|
|
|
return c;
|
2006-09-07 16:14:53 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|