File: FormatNodeRaw.txt

package info (click to toggle)
libwildmagic 5.13-1
  • links: PTS, VCS
  • area: main
  • in suites: buster, jessie, jessie-kfreebsd, stretch
  • size: 89,572 kB
  • ctags: 26,264
  • sloc: cpp: 210,924; csh: 637; sh: 95; makefile: 36
file content (13 lines) | stat: -rw-r--r-- 447 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
// In Data/Biped.txt, you see lines of the form "Node <SomeName>".
// The corresponding file is Data/Bones/SomeName.node.raw and the
// file format is listed below.

int numChildren;  // number of children of the node
String names[numChildren];  // names of the children

// A non-null-terminated string.
struct String
{
    int length;  // number of characters in the string
    char name[length];  // the characters in the string
}