$FUNCNAME$
	FILEGETSTR()
$CATEGORY$
	FILE/IO
$SUMMARY$
	Returns string.
$LANG_RU$
	 .
$SYNTAX$

     FILEGETSTR(<nFileHandle>, <nSize>) 	--> <sFileStr>

$ARGUMENTS$
     <nFileHandle>	Numeric, is the file handler.
     <nSize>		Numeric, is the size string.

$LANG_RU$
     <nFileHandle>	Numeric,  .
     <nSize>		Numeric,  .

$RETURNS$

     Returns string <sFileStr>, what was read from file <nFileHandle>.

$LANG_RU$

	  <sFileStr>,    <nFileHandle>.

$DESCRIPTION$

     FILEGETSTR() reads string from opened file. The size result string restrict
     <CRLF> or <CR>, but no more then <nSize> symbols.
$LANG_RU$

     FILEGETSTR()      .   
     <CRLF>  <CR>,     <nSize> .
$EXAMPLES$
nFile := FOPEN("test.txt")
do while !feof(nFile)
	? FILEGETSTR(nFile, 1024)
	?
enddo
fclose()
$PLATFORMS$
$SEEALSO$
	FOPEN()
$AUTHOR$
ITK
   $LANG_RU$

$END$

