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