diff options
| author | rsc <devnull@localhost> | 2003-11-23 17:54:58 +0000 |
|---|---|---|
| committer | rsc <devnull@localhost> | 2003-11-23 17:54:58 +0000 |
| commit | 7a4ee46d253e291044bba2d0c54b818b67ac013c (patch) | |
| tree | 7bdcaf69a15ecd24c057a697936b67bbde93e00b /src/cmd/venti/xml.h | |
| parent | 4fbfdd7acd4bf4fc71b1329230e05fc761907566 (diff) | |
| download | plan9port-7a4ee46d253e291044bba2d0c54b818b67ac013c.tar.gz plan9port-7a4ee46d253e291044bba2d0c54b818b67ac013c.zip | |
Initial stab at Venti.
Diffstat (limited to 'src/cmd/venti/xml.h')
| -rw-r--r-- | src/cmd/venti/xml.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/cmd/venti/xml.h b/src/cmd/venti/xml.h new file mode 100644 index 00000000..c9e52b0b --- /dev/null +++ b/src/cmd/venti/xml.h @@ -0,0 +1,11 @@ +void xmlamap(Hio *hout, AMap *v, char *tag, int indent); +void xmlarena(Hio *hout, Arena *v, char *tag, int indent); +void xmlindex(Hio *hout, Index *v, char *tag, int indent); + +void xmlaname(Hio *hout, char *v, char *tag); +void xmlscore(Hio *hout, u8int *v, char *tag); +void xmlsealed(Hio *hout, int v, char *tag); +void xmlu32int(Hio *hout, u32int v, char *tag); +void xmlu64int(Hio *hout, u64int v, char *tag); + +void xmlindent(Hio *hout, int indent); |
