summaryrefslogtreecommitdiffstats
path: root/examples/Makefile
Commit message (Collapse)AuthorAgeFilesLines
* add file operation and examplesanjiahao2022-03-101-2/+8
| | | | | | operate lz4 compressed files as a general files Signed-off-by: anjiahao <anjiahao@xiaomi.com>
* Add C++ compatibility test for examples/Takayuki Matsuoka2021-09-061-0/+5
|
* updated license & header datesYann Collet2020-11-251-1/+1
|
* update docYann Collet2020-11-151-1/+1
|
* Try to put some tests I made in ONE place. I also moved a test for ↵JPeterMugaas2019-04-221-47/+1
| | | | "install" in one place to try to isolate it.
* Initial commits from diff I submitted earlierJPeterMugaas2019-04-221-5/+42
|
* merge lz4opt.h into lz4hc.cYann Collet2018-02-251-1/+1
| | | | | | | | | | | | | | Having a dedicated file for optimal parser made sense during its creation, it allowed Przemyslaw to work more freely on lz4opt, with less dependency on lz4hc, moreover, the optimal parser was more complex, with its own search functions. Since the optimal was rewritten last year, it's now a lot lighter. It makes more sense now to integrate it directly inside lz4hc.c, making it easier to edit (editors are a bit "lost" inside a `*.h` dependent on its #include position), it also reduces the number of files in the project, which fits pretty well with lz4 objectives. (adding lz4hc requires "just" lz4hc.h and lz4hc.c).
* examples/Makefile : changed dependency orderYann Collet2018-02-011-9/+9
| | | | static library *.a must come after source files *.c on linux
* ensure proper dependencies are built for /examplesYann Collet2018-02-011-19/+25
| | | | also : use liblz4.a static lib to share compilation time
* minor improvements to examplesYann Collet2017-09-111-6/+14
| | | | | cosmetic : better display added optional variable MOREFLAGS
* refactored simple_buffer.c example (#363)Yann Collet2017-06-081-4/+7
|
* Add dictionary random access exampleNick Terrell2016-11-101-6/+10
|
* use gnu c99 to get both c99 and POSIXGeorg Sauthoff2016-08-271-1/+1
| | | | | | when compiling with gcc fixes fileno() implicitly defined on Linx and compile error on Solaris 10
* Correctly reference self (github, not googlecode)Ben Wiederhake2016-07-071-1/+1
|
* Several changes to address a few concerns from Yann. See Google Group LZ4c ↵KyleJHarper2015-10-301-2/+2
| | | | topic 'Reusing compression/decompression resources' for details.
* Took out the basics and placed them into basics.c. Added decompression and ↵KyleJHarper2015-10-261-1/+4
| | | | a wrapper for the generic call. I will likely break this file up into 2 examples before submission.
* Wrote the skeleton of the performance test. Need to finish tests for the ↵KyleJHarper2015-10-221-1/+4
| | | | rest of the call stack and then my own copy of generic().
* minor example clarificationYann Collet2015-06-281-1/+1
|
* Use lz4 binary to check outputZbigniew Jędrzejewski-Szmek2015-06-181-0/+2
|
* Add example which uses the frame api through the libraryZbigniew Jędrzejewski-Szmek2015-06-181-2/+7
|
* Updated lz4hc APIYann Collet2015-05-031-18/+7
|
* New directory structure : library source files into /lib directoryYann Collet2014-11-301-2/+2
|
* Fixed : decompression issue on 32-bits CPU without unaligned memory accessYann Collet2014-11-291-1/+1
|
* HC streaming : support small ringbuffer scenariosYann Collet2014-10-251-1/+1
|
* Added : HC streaming ring buffer exampleYann Collet2014-10-221-2/+6
|
* Added : examples from Takayuki MatsuokaYann Collet2014-08-261-0/+85