"Fossies" - the Fresh Open Source Software Archive

Member "teapot-2.3.0/xdr.h" (6 Feb 2012, 315 Bytes) of package /linux/privat/old/teapot-2.3.0.tar.gz:


As a special service "Fossies" has tried to format the requested source page into HTML format using (guessed) C and C++ source code syntax highlighting (style: standard) with prefixed line numbers and code folding option. Alternatively you can here view or download the uninterpreted source code file. For more information about "xdr.h" see the Fossies "Dox" file reference documentation.

    1 #ifndef XDR_H
    2 #define XDR_H
    3 
    4 /* Thanks to curses. */
    5 #if 0
    6 #undef TRUE
    7 #undef FALSE
    8 #endif
    9 
   10 #include <sys/types.h>
   11 #include <rpc/types.h>
   12 #include <rpc/xdr.h>
   13 
   14 #include "sheet.h"
   15 
   16 bool_t xdr_cell(XDR *xdrs, Cell *cell);
   17 bool_t xdr_column(XDR *xdrs, int *x, int *z, int *width);
   18 bool_t xdr_magic(XDR *xdrs);
   19 
   20 #endif