home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 5 / 05.iso / a / a075 / 1.img / TOOLKIT1.EXE / SST96.PRG < prev    next >
Encoding:
Text File  |  1989-08-08  |  315 b   |  22 lines

  1. ********************
  2.  
  3. FUNCTION If_ntx
  4.  
  5.    PARAMETERS _ntx
  6.  
  7.    IF EMPTY(PCOUNT())
  8.       RETURN(.F.)
  9.    ENDIF
  10.    IF TYPE("_ntx") != "N"
  11.       RETURN(.F.)
  12.    ENDIF
  13.  
  14.    PRIVATE _ntxc
  15.  
  16.    REWIND(_ntx, 0)
  17.    _ntxc = ASC(FREADSTR(_ntx, 1))
  18.    FSEEK(_ntx, -1, 1)
  19.    RETURN( _ntxc = 6 )
  20.  
  21. * End of File
  22.