blob: 2fc9f7ab0b2e2006d2aae69b20a4b113edac997e [file] [log] [blame]
rsc5ba841d2005-01-04 21:21:32 +00001#ifndef _9PCLIENT_H_
2#define _9PCLIENT_H_ 1
3#ifdef __cplusplus
4extern "C" {
5#endif
6
7AUTOLIB(9pclient)
8/*
9 * Simple user-level 9P client.
10 */
11
12typedef struct CFsys CFsys;
13typedef struct CFid CFid;
14
15CFsys *fsinit(int);
16CFsys *fsmount(int, char*);
17
18int fsversion(CFsys*, int, char*, int);
rsc74a69212005-02-08 21:06:39 +000019CFid *fsauth(CFsys*, char*, char*);
rsc5ba841d2005-01-04 21:21:32 +000020CFid *fsattach(CFsys*, CFid*, char*, char*);
21CFid *fsopen(CFsys*, char*, int);
22int fsopenfd(CFsys*, char*, int);
23long fsread(CFid*, void*, long);
24long fsreadn(CFid*, void*, long);
rscdaefa1a2005-01-18 18:11:39 +000025long fspread(CFid*, void*, long, vlong);
26long fspwrite(CFid*, void*, long, vlong);
27vlong fsseek(CFid*, vlong, int);
rsc5ba841d2005-01-04 21:21:32 +000028long fswrite(CFid*, void*, long);
29void fsclose(CFid*);
30void fsunmount(CFsys*);
rscce2a3782005-02-10 16:08:16 +000031void _fsunmount(CFsys*); /* do not close fd */
rsc5ba841d2005-01-04 21:21:32 +000032struct Dir; /* in case there's no lib9.h */
33long fsdirread(CFid*, struct Dir**);
34long fsdirreadall(CFid*, struct Dir**);
35struct Dir *fsdirstat(CFsys*, char*);
36struct Dir *fsdirfstat(CFid*);
37int fsdirwstat(CFsys*, char*, struct Dir*);
38int fsdirfwstat(CFid*, struct Dir*);
39CFid *fsroot(CFsys*);
40void fssetroot(CFsys*, CFid*);
rscce2a3782005-02-10 16:08:16 +000041CFsys *nsinit(char*);
rsc5ba841d2005-01-04 21:21:32 +000042CFsys *nsmount(char*, char*);
rsc74a69212005-02-08 21:06:39 +000043CFid *nsopen(char*, char*, char*, int);
rsc5ba841d2005-01-04 21:21:32 +000044
rscce2a3782005-02-10 16:08:16 +000045extern int chatty9pclient;
46
rsc5ba841d2005-01-04 21:21:32 +000047#ifdef __cplusplus
48}
49#endif
50#endif