protoverse

A metaverse protocol
git clone git://jb55.com/protoverse
Log | Files | Refs | README | LICENSE

describe.h (315B)


      1 
      2 #ifndef PROTOVERSE_DESCRIBE_H
      3 #define PROTOVERSE_DESCRIBE_H
      4 
      5 #include "parse.h"
      6 
      7 struct describe {
      8 	struct cell *cell;
      9 	struct parser *parsed;
     10 	struct cursor *strs;
     11 };
     12 
     13 int describe(struct parser *parser, u16 root_cell);
     14 int describe_cell(struct describe *desc);
     15 int describe_cells(struct describe *desc);
     16 
     17 #endif