Before calling FNC_TblOpGetCustomKeyInfoOf, you must allocate memory for the out_info data structure:
out_info = FNC_malloc(sizeof(Key_info_t))
You must release the data structure when it is no longer needed:
FNC_free(out_info);
Before calling FNC_TblOpGetCustomKeyInfoOf, you must allocate memory for the out_info data structure:
out_info = FNC_malloc(sizeof(Key_info_t))
You must release the data structure when it is no longer needed:
FNC_free(out_info);