.reference

git-svn-id: svn://ultimatepp.org/upp/trunk@12943 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
cxl 2019-04-04 20:48:15 +00:00
parent 1c8db95e61
commit a633f4c16e

View file

@ -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);