mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-15 06:05:58 -06:00
.reference
git-svn-id: svn://ultimatepp.org/upp/trunk@12943 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
parent
1c8db95e61
commit
a633f4c16e
1 changed files with 4 additions and 4 deletions
|
|
@ -19,7 +19,7 @@ CONSOLE_APP_MAIN
|
|||
{
|
||||
FileIn in(cpath);
|
||||
ZDecompressStream z(in);
|
||||
DLOG(z.GetLine());
|
||||
RLOG(z.GetLine());
|
||||
}
|
||||
|
||||
{
|
||||
|
|
@ -31,19 +31,19 @@ CONSOLE_APP_MAIN
|
|||
{
|
||||
FileIn in(cpath);
|
||||
LZ4DecompressStream z(in);
|
||||
DLOG(z.GetLine());
|
||||
RLOG(z.GetLine());
|
||||
}
|
||||
|
||||
{
|
||||
FileOut out(cpath);
|
||||
ZstdCompressStream z(out);
|
||||
z.Put("Compressed by LZ4");
|
||||
z.Put("Compressed by Zstd");
|
||||
}
|
||||
|
||||
{
|
||||
FileIn in(cpath);
|
||||
ZstdDecompressStream z(in);
|
||||
DLOG(z.GetLine());
|
||||
RLOG(z.GetLine());
|
||||
}
|
||||
|
||||
FileDelete(cpath);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue