File: structs.dot

package info (click to toggle)
pydot 4.0.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,820 kB
  • sloc: python: 2,727; sh: 12; makefile: 8
file content (9 lines) | stat: -rw-r--r-- 308 bytes parent folder | download | duplicates (22)
1
2
3
4
5
6
7
8
9
digraph structs {
node [shape=record];
    struct1 [shape=record,label="<f0> left|<f1> middle|<f2> right"];
    struct2 [shape=record,label="<f0> one|<f1> two"];
    struct3 [shape=record,label="hello\nworld |{ b |{c|<here> d|e}| f}| g | h"];
    struct1:f1 -> struct2:f0;
    struct1:f2 -> struct3:here;
}