fix backcall

This commit is contained in:
Vitor Santos Costa
2018-10-17 16:51:29 +01:00
parent 868961ebb5
commit 45439b8b86
7 changed files with 16 additions and 11 deletions

View File

@@ -85,6 +85,7 @@ typedef struct vfs {
/// in this space, usual w,r,a,b flags plus B (store in a buffer)
bool (*close)(int sno); /// close the object
int (*get_char)(int sno); /// get an octet from the stream
int (*get_wchar)(int sno); /// get an octet from the stream
int (*peek_char)(int sno); /// unget an octet from the stream
int (*peek_wchar)(int sno); /// unget an octet from the stream
int (*put_char)(int sno, int ch); /// output an octet to the stream