mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-15 14:16:07 -06:00
13 lines
255 B
C++
13 lines
255 B
C++
#include <Core/Core.h>
|
|
#include <plugin/lz4/lz4.h>
|
|
|
|
using namespace Upp;
|
|
|
|
CONSOLE_APP_MAIN
|
|
{
|
|
StdLogSetup(LOG_COUT|LOG_FILE);
|
|
String h = LZ4Compress(String());
|
|
h = LZ4Decompress(h);
|
|
ASSERT(h.GetCount() == 0);
|
|
LOG("=============== OK");
|
|
}
|