read file contents to string
| 3848 | |
| 3849 | /// read file contents to string |
| 3850 | lString16 LVReadTextFile( lString16 filename ) |
| 3851 | { |
| 3852 | LVStreamRef stream = LVOpenFileStream( filename.c_str(), LVOM_READ ); |
| 3853 | return LVReadTextFile( stream ); |
| 3854 | } |
| 3855 | |
| 3856 | lString16 LVReadTextFile( LVStreamRef stream ) |
| 3857 | { |
no test coverage detected