Booleans
The C language has no built-in Boolean type. However, the RPC library uses a Boolean type called bool_t, which is either True or False.
Objects that are declared as type bool in XDR language
are compiled into bool_t in the output header file; for example:
bool married; --> bool_t married;