$FUNCNAME$
	LIKE()
$CATEGORY$
	STRING
$SUMMARY$
	Check confirmity string to simple mask.
$LANG_RU$
	     .
$SYNTAX$
     LIKE(<sMask>, <sString>) 	--> TRUE || FALSE
$ARGUMENTS$
     <sMask>	String, is the mask.
     <sString>	String, is the source string.
$LANG_RU$
     <sMask>	String, 
     <sString>	String,  
$RETURNS$
     Returns TRUE if string corresponding to mask.
$LANG_RU$
      TRUE,    .
$DESCRIPTION$
     LIKE() returns TRUE if string corresponding to mask.
     The string <sMask> can contents special symbols: <?>, <*>, <.>
$LANG_RU$
     LIKE()  TRUE,    .
      <sMask>    : <?>, <*>, <.>
$EXAMPLES$

? LIKE("aaa", "aaa") 		// --> TRUE
? LIKE("aaa", "a*") 		// --> TRUE
? LIKE("aaa", "*") 		// --> TRUE
? LIKE("aaa", "a") 		// --> FALSE
? LIKE("", "a") 		// --> FALSE
? LIKE("", "*") 		// --> TRUE
$PLATFORMS$
   No dependies of platform.
   $LANG_RU$
      
$SEEALSO$
$AUTHOR$
ITK
   $LANG_RU$

$END$

