forked from KolibriOS/kolibrios
efd8f1922c
git-svn-id: svn://kolibrios.org@5266 a494cfbc-eb01-0410-851d-a64ba20cac60
58 lines
1.2 KiB
C
58 lines
1.2 KiB
C
#include <stdio.h>
|
|
#include <kolibrisys.h>
|
|
|
|
int fwrite(void *buffer,int size,int count,FILE* file)
|
|
{
|
|
dword res;
|
|
dword fullsize;
|
|
|
|
if (file->mode==FILE_OPEN_READ) return 0;
|
|
|
|
if (file->mode==FILE_OPEN_APPEND)
|
|
file->filepos=file->filesize;
|
|
fullsize=count*size;
|
|
|
|
if ((file->filesize)<(file->filepos+fullsize)) file->filesize=file->filepos+fullsize;
|
|
|
|
/*
|
|
if (file->mode==FILE_OPEN_APPEND)
|
|
{
|
|
file->filepos==file->filesize;
|
|
res=_ksys_appendtofile(file->filename,file->filepos,fullsize,buffer);
|
|
if (res==0)
|
|
{
|
|
file->filepos+=fullsize;
|
|
fullsize=fullsize/size;
|
|
return(fullsize);
|
|
}
|
|
else return(0);
|
|
|
|
}
|
|
*/
|
|
if ((file->mode==FILE_OPEN_WRITE) || (file->mode==FILE_OPEN_APPEND))
|
|
{
|
|
if (file->filepos==0)
|
|
{ //file mot craeted yet
|
|
res=_ksys_rewritefile(file->filename,fullsize,buffer);
|
|
if (res==0)
|
|
{
|
|
file->filepos+=fullsize;
|
|
fullsize=fullsize/count;
|
|
return(fullsize);
|
|
}
|
|
else return(0);
|
|
}
|
|
else
|
|
{
|
|
res=_ksys_appendtofile(file->filename,file->filepos,fullsize,buffer);
|
|
if (res==0)
|
|
{
|
|
file->filepos+=fullsize;
|
|
fullsize=fullsize/count;
|
|
return(fullsize);
|
|
}
|
|
else return(0);
|
|
}
|
|
}
|
|
else return(0);
|
|
} |