Go to the first, previous, next, last section, table of contents.


struct name

struct name
{
  char *s;
  int len;
};

The s points to the zero-terminated C byte-string holding the name. The len is the length of s.


Go to the first, previous, next, last section, table of contents.