1<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 2<html xml:lang="en-US" lang="en-US" xmlns="http://www.w3.org/1999/xhtml"> 3 <head> 4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 5 <meta http-equiv="Content-Style-Type" content="text/css" /> 6 <link rel="stylesheet" href="../css/manpage.css" type="text/css" /> 7 <link rel="stylesheet" href="../css/timetable.css" type="text/css" /> 8 <title>endif - End if block</title> 9 </head> 10 <body> 11 <h1>endif - End if block</h1> 12 13 <h2>Calling Format</h2> 14 <div class="section"> 15 <pre class="definition"> 16endif 17</pre> 18 </div> 19 20 <h2>Operands</h2> 21 <div class="section"> 22 <p> 23 None.<br> 24 </p> 25 </div> 26 27 <h2>Overview</h2> 28 <div class="section"> 29 <p> 30 Ends a control block started by <CODE>ifc</CODE> or <CODE>ifb</CODE>.<br> 31 </p> 32 <p class="warning"> 33 You must include at least one instruction between<CODE>ifb</CODE> and <CODE>endif</CODE>, between <CODE>ifc</CODE> and <CODE>endif</CODE>, and between <CODE>else</CODE> and <CODE>endif</CODE>.<br> 34 </p> 35 </div> 36 37 <h2>Operation</h2> 38 <div class="section"> 39<pre class="definition"> 40if ( src == true ) 41{ 42 ... 43} 44else 45{ 46 ... 47} 48endif 49</pre> 50 </div> 51 52 <h2>Code Example</h2> 53 <div class="section"> 54<pre class="definition"> 55ifb b0 56 ... 57else 58 ... 59endif 60</pre> 61 </div> 62 63 64 <h2>Revision History</h2> 65 <div class="section"> 66 <dl class="history"> 67 <dt>2011/12/20</dt> 68 <dd>Initial version.<br /> 69 </dd> 70 </dl> 71 </div> 72 73 <hr><p>CONFIDENTIAL</p></body> 74</html>