Lichen

Annotated templates/native/io.h

911:5c96e5ca1036
2020-08-03 Paul Boddie Changed diagram font to sans-serif.
paul@354 1
/* Native functions for input/output.
paul@354 2
paul@664 3
Copyright (C) 2016, 2017 Paul Boddie <paul@boddie.org.uk>
paul@354 4
paul@354 5
This program is free software; you can redistribute it and/or modify it under
paul@354 6
the terms of the GNU General Public License as published by the Free Software
paul@354 7
Foundation; either version 3 of the License, or (at your option) any later
paul@354 8
version.
paul@354 9
paul@354 10
This program is distributed in the hope that it will be useful, but WITHOUT
paul@354 11
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
paul@354 12
FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
paul@354 13
details.
paul@354 14
paul@354 15
You should have received a copy of the GNU General Public License along with
paul@354 16
this program.  If not, see <http://www.gnu.org/licenses/>.
paul@354 17
*/
paul@354 18
paul@354 19
#ifndef __NATIVE_IO_H__
paul@354 20
#define __NATIVE_IO_H__
paul@354 21
paul@354 22
#include "types.h"
paul@354 23
paul@354 24
/* Input/output. */
paul@354 25
paul@664 26
__attr __fn_native_io_fclose(__attr __self, __attr fp);
paul@664 27
__attr __fn_native_io_fflush(__attr __self, __attr fp);
paul@664 28
__attr __fn_native_io_fopen(__attr __self, __attr filename, __attr mode);
paul@664 29
__attr __fn_native_io_fdopen(__attr __self, __attr fd, __attr mode);
paul@664 30
__attr __fn_native_io_fread(__attr __self, __attr fp, __attr size);
paul@664 31
__attr __fn_native_io_fwrite(__attr __self, __attr fp, __attr str);
paul@664 32
__attr __fn_native_io_close(__attr __self, __attr fd);
paul@664 33
__attr __fn_native_io_read(__attr __self, __attr fd, __attr n);
paul@664 34
__attr __fn_native_io_write(__attr __self, __attr fd, __attr str);
paul@354 35
paul@354 36
/* Module initialisation. */
paul@354 37
paul@354 38
void __main_native_io();
paul@354 39
paul@354 40
#endif /* __NATIVE_IO_H__ */