static int ncx_pad_putn_Ilong(void **xpp, size_t nelems, const long *tp, nc_type type) { switch(type) { case NC_CHAR: return NC_ECHAR; case NC_BYTE: return ncx_pad_putn_schar_long(xpp, nelems, tp); case NC_SHORT: return ncx_pad_putn_short_long(xpp, nelems, tp); case NC_INT: return ncx_putn_int_long(xpp, nelems, tp); case NC_FLOAT: return ncx_putn_float_long(xpp, nelems, tp); case NC_DOUBLE: return ncx_putn_double_long(xpp, nelems, tp); case NC_UBYTE: return ncx_pad_putn_uchar_long(xpp, nelems, tp); case NC_USHORT: return ncx_putn_ushort_long(xpp, nelems, tp); case NC_UINT: return ncx_putn_uint_long(xpp, nelems, tp); case NC_INT64: return ncx_putn_longlong_long(xpp, nelems, tp); case NC_UINT64: return ncx_putn_ulonglong_long(xpp, nelems, tp); default: assert("ncx_pad_putn_Ilong invalid type" == 0); } return NC_EBADTYPE; }
static int ncx_pad_putn_Ilong(void **xpp, size_t nelems, const long *tp, nc_type type) { switch(type) { case NC_CHAR: return NC_ECHAR; case NC_BYTE: return ncx_pad_putn_schar_long(xpp, nelems, tp); case NC_SHORT: return ncx_pad_putn_short_long(xpp, nelems, tp); case NC_INT: return ncx_putn_int_long(xpp, nelems, tp); case NC_FLOAT: return ncx_putn_float_long(xpp, nelems, tp); case NC_DOUBLE: return ncx_putn_double_long(xpp, nelems, tp); case NC_NAT: break; /* Some compilers complain if enums are missing from a switch */ } assert("ncx_pad_putn_Ilong invalid type" == 0); return NC_EBADTYPE; }