Return whether node is the right child of its parent.
Return true if the specified node is the right child of its parent, and false otherwise. The behavior is undefined unless 0 != node->parent().
true if node is the right child of its parent
| Name | Description |
|---|---|
| node | node whose parent-child relationship is tested |