view Paper/codes/wc/File.cbc @ 17:0d703e0d9781

...
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Wed, 05 May 2021 15:31:39 +0900
parents
children
line wrap: on
line source

typedef struct File <> {
  Path *path;
  int mode; /* rw .. */
  Data *fileImpl ;
  __code open(FileImpl* file,Key *key, __code next(Block *block,...));
  __code ack(FileImpl* file,Ack *ack, __code next(Block *block,...));
} File;