/* ** File name: PRINT_XDR.C ** ** Copyright (c) 1991, by ** Process Software Corporation ** Framingham, Massachusetts */ /* ** Except for the comments, this file is the output of RPCGEN. ** It is created by either of these commands: ** rpcgen -c -o print_xdr.c print.x ** rpcgen print.x */ #include "TCPWARE_INCLUDE:RPC.H" #include "PRINT.H" /******************** xdr_a_record() ********************/ /* ** The record that a client sends to the server consists of a string that is ** shorter than the maximum size defined in PRINT.X. */ bool_t xdr_a_record( xdrs, objp) XDR *xdrs; a_record *objp; { if( !xdr_string( xdrs, &objp->ar_buffer, MAX_STRING_LEN)) return( FALSE); return( TRUE); } /* end file PRINT_XDR.C */