Untitled

mail@pastecode.io avatar
unknown
c_cpp
12 days ago
511 B
4
Indexable
Never
fsdbCDBusVal*
__ConvertToCDBusFmt_VCObject(ffwObject* obj, uint_T vc_obj_idx, uint_T byte_count, uint_T bpb, byte_T* vc_ptr)
{
    ffwObject* vc_obj = __GetVCObject(obj, vc_obj_idx);
    if (vc_obj == NULL)
    {
        /* VG coverage Begin Exemption */
        /* Reason:
            1. Error handling codes
            2.
        */
        DASSERT(FALSE);
        return NULL;
        /* VG coverage End Exemption */
    }
    return __ConvertToCDBusFmt(vc_obj, byte_count, bpb, vc_ptr);
}
Leave a Comment