Type Definitions

This section explains the XDR type definitions (typedefs).

XDR type definitions (typedefs) have the same syntax as C typedefs.

typedef-definition:
      "typedef" declaration
The following example defines an fname_type used for declaring file-name strings with a maximum length of 255 characters.

typedef string fname_type<255>; --> typedef char *fname_type;