File: TNode.txt

package info (click to toggle)
libticalcs4 4.6.1-2
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k, lenny
  • size: 3,552 kB
  • ctags: 2,168
  • sloc: ansic: 17,103; sh: 9,269; makefile: 520; yacc: 288; awk: 144; sed: 16
file content (18 lines) | stat: -rw-r--r-- 441 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
[Main]
Name=TNode
Type=Define
Header=calc_int.h
Definition=typedef GNode TNode

[Fields]
void    *data : actual data of the node
@TNode@ *next : node's sibling
@TNode@ *prev : node's sibling
@TNode@ *parent : parent of the TNode (NULL is the root)
@TNode@ *children : the first child of the TNode. Access others by next.

[Summary]
A type representing a tree.

[See also]
The GLib documentation (<a href="http://www.gtk.org">www.gtk.org</a>)