| 855 | |
| 856 | |
| 857 | bool_t xdr_wrapstring(xdr_t* xdrs, SCHAR** strp) |
| 858 | { |
| 859 | /************************************** |
| 860 | * |
| 861 | * x d r _ w r a p s t r i n g |
| 862 | * |
| 863 | ************************************** |
| 864 | * |
| 865 | * Functional description |
| 866 | * Map from external to internal representation (or vice versa). |
| 867 | * |
| 868 | **************************************/ |
| 869 | |
| 870 | return xdr_string(xdrs, strp, MAXSTRING_FOR_WRAPSTRING); |
| 871 | } |
| 872 | |
| 873 | |
| 874 | int xdr_t::create(SCHAR* addr, unsigned len, xdr_op op) |
no test coverage detected