"Fossies" - the Fresh Open Source Software Archive 
Member "unrar/filestr.hpp" (4 May 2022, 338 Bytes) of package /linux/misc/unrarsrc-6.1.7.tar.gz:
As a special service "Fossies" has tried to format the requested source page into HTML format using (guessed) C and C++ source code syntax highlighting (style:
standard) with prefixed line numbers and
code folding option.
Alternatively you can here
view or
download the uninterpreted source code file.
For more information about "filestr.hpp" see the
Fossies "Dox" file reference documentation.
1 #ifndef _RAR_FILESTR_
2 #define _RAR_FILESTR_
3
4 bool ReadTextFile(
5 const wchar *Name,
6 StringList *List,
7 bool Config,
8 bool AbortOnError=false,
9 RAR_CHARSET SrcCharset=RCH_DEFAULT,
10 bool Unquote=false,
11 bool SkipComments=false,
12 bool ExpandEnvStr=false
13 );
14
15 RAR_CHARSET DetectTextEncoding(const byte *Data,size_t DataSize);
16
17 #endif