%if EXISTS("_BLOCK_API_") == 0
%assign _BLOCK_API_ = 1
%%
%%Copyright2019TheMathWorks,Inc.
%%
 
%%DocFunction{BlockFunctions}:LibBlockSetIsExpressionCompliant
%%Abstract:
%%Specifythatthisblock'sTLCfileiscompliantwithexpressionfolding.
%%TobecalledinBlockInstanceSetupfunction.
%%
%function LibBlockSetIsExpressionCompliant(block) void
  %% TLCExprCompliant
  %    block.BlockIdx[0], block.BlockIdx[2], TLC_TRUE)>
%endfunction
 
 
%%DocFunction{BlockFunctions}:LibBlockSetIntegerDowncastUnnecessary
%%Abstract:
%%Specifythatthisblockdoesnotneedtoenforceintegerdowncastsforits
%%outputexpression
%%
%function LibBlockSetIntegerDowncastUnnecessary(block) void
  %% EnforceIntegerDowncast
  %    block.BlockIdx[0], block.BlockIdx[2], TLC_FALSE)>
%endfunction
 
 
%%DocFunction{BlockFunctions}:LibBlockSetCustomStorageComplianceLevel
%%Abstract:
%%Setthecustomstoragecompliancelevelofablock
%%
%function LibBlockSetCustomStorageComplianceLevel(block, level) void
  %% CustomStorageClassCompliant
  %    block.BlockIdx[0], block.BlockIdx[2], level)>
%endfunction
 
%endif %% _BLOCK_API_