diff options
author | Lasse Collin <lasse.collin@tukaani.org> | 2014-07-25 20:57:20 +0300 |
---|---|---|
committer | Lasse Collin <lasse.collin@tukaani.org> | 2014-07-25 20:57:20 +0300 |
commit | e1c8f1d01f4a4e2136173edab2dc63c71ef038f4 (patch) | |
tree | 5be144fa02344637b1d0c941019c1e25e35ad3e2 /src/liblzma/common/Makefile.inc | |
parent | Update THANKS. (diff) | |
download | xz-e1c8f1d01f4a4e2136173edab2dc63c71ef038f4.tar.xz |
liblzma: Add lzma_memcmplen() for fast memory comparison.
This commit just adds the function. Its uses will be in
separate commits.
This hasn't been tested much yet and it's perhaps a bit early
to commit it but if there are bugs they should get found quite
quickly.
Thanks to Jun I Jin from Intel for help and for pointing out
that string comparison needs to be optimized in liblzma.
Diffstat (limited to 'src/liblzma/common/Makefile.inc')
-rw-r--r-- | src/liblzma/common/Makefile.inc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/liblzma/common/Makefile.inc b/src/liblzma/common/Makefile.inc index 8f54a97a..38a63416 100644 --- a/src/liblzma/common/Makefile.inc +++ b/src/liblzma/common/Makefile.inc @@ -8,6 +8,7 @@ liblzma_la_SOURCES += \ common/common.c \ common/common.h \ + common/memcmplen.h \ common/block_util.c \ common/easy_preset.c \ common/easy_preset.h \ |