forked from KolibriOS/kolibrios
9562f01892
- Duplicate functionality files removed; - Refactoring of file handling functions; - Removed broken impliments. Gears (C + TinyGL): - Removed because it duplicates an existing example on Fasm and uses unsupported wrappers on the KOS API. KosJS: - Removed. The MuJS port is too old and not used anywhere. Support is not profitable. Backy: - Removed useless GCC version. Support is not profitable. DGen-SDL and SQLite3 - Fix after removing broken "dirent.h". Fridge: - Moving the KOS API wrapper to avoid compilation errors. Udis86, uARM and 8086tiny: - Fix after removing redundant "kos_LoadConsole.h". git-svn-id: svn://kolibrios.org@9952 a494cfbc-eb01-0410-851d-a64ba20cac60
21 lines
548 B
C
21 lines
548 B
C
/*
|
|
* Copyright (C) KolibriOS team 2004-2024. All rights reserved.
|
|
* Distributed under terms of the GNU General Public License
|
|
*/
|
|
|
|
#include <sys/types.h>
|
|
#include <errno.h>
|
|
#include <sys/ksys.h>
|
|
|
|
int write_file(const char *path, const void *buff,
|
|
size_t offset, size_t count, size_t *writes)
|
|
{
|
|
ksys_file_status_t st = _ksys_file_write(path, offset, count, buff);
|
|
*writes = st.rw_bytes;
|
|
if(!st.status)
|
|
return 0;
|
|
else if (st.status == KSYS_FS_ERR_8)
|
|
return ENOSPC;
|
|
return -1;
|
|
}
|