annotate src/impl/FileRead.h @ 138:e3dd8f96c2fb

add impl file read interface
author anatofuz
date Thu, 12 Dec 2019 14:13:51 +0900
parents 4f9d95dc4efd
children dec1fa964271
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
109
4f9d95dc4efd fix createInstance
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1 typedef struct FileRead<Type, Isa> impl SysRead {
4f9d95dc4efd fix createInstance
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
2 struct file* f;
138
e3dd8f96c2fb add impl file read interface
anatofuz
parents: 109
diff changeset
3 int r;
e3dd8f96c2fb add impl file read interface
anatofuz
parents: 109
diff changeset
4 __code cbc_fileread1(Type* file_read, struct file* f,int r,__code next(r,...));
e3dd8f96c2fb add impl file read interface
anatofuz
parents: 109
diff changeset
5 __code next(...);
109
4f9d95dc4efd fix createInstance
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
6 } FileRead;