1 <!-- ##### MACRO popen ##### -->
7 <!-- ##### MACRO pclose ##### -->
13 <!-- ##### MACRO lseek ##### -->
19 <!-- ##### FUNCTION g_node_insert_after ##### -->
21 Inserts a #GNode beneath the parent after the given sibling.
24 @parent: the #GNode to place @node under.
25 @sibling: the sibling #GNode to place @node after. If sibling is NULL,
26 the node is inserted as the first child of @parent.
27 @node: the #GNode to insert.
28 @Returns: the inserted #GNode.
30 <!-- ##### MACRO getpid ##### -->
36 <!-- ##### MACRO close ##### -->
42 <!-- ##### MACRO fdopen ##### -->
48 <!-- ##### MACRO getcwd ##### -->
54 <!-- ##### USER_FUNCTION GSearchFunc ##### -->
56 Specifies the type of function passed to g_tree_search().
59 @key: a key from a #GTree.
60 @data: the data to compare with the key.
61 @Returns: 0 if the desired key has been found, a negative number if the
62 desired key comes before @key in the sort order of the #GTree, or a positive
63 value if the desired key comes after @key.
65 <!-- ##### MACRO write ##### -->
71 <!-- ##### MACRO access ##### -->
77 <!-- ##### MACRO g_string ##### -->
79 Turns the argument into a string literal by using the '#' stringizing operator.
82 @x: text to convert to a literal string.
84 <!-- ##### MACRO read ##### -->
90 <!-- ##### MACRO open ##### -->
96 <!-- ##### USER_FUNCTION GFreeFunc ##### -->
98 Declares a type of function which takes an arbitrary data pointer argument
99 and has no return value. It is not currently used in GLib or GTK+.