Number Filter Primitives
The XDR library provides basic filter primitives that translate between types of numbers and their external representations.
The XDR number filters cover signed and unsigned integers, as well as signed and unsigned short and long integers.
The subroutines for the XDR number filters are:
Item | Description |
---|---|
xdr_int | Translates between C language integers and their external representations. |
xdr_u_int | Translates between C language unsigned integers and their external representations. |
xdr_long | Translates between C language long integers and their external representations. |
xdr_u_long | Translates between C language unsigned long integers and their external representations. |
xdr_short | Translates between C language short integers and their external representations. |
xdr_u_short | Translates between C language unsigned short integers and their external representations. |