Merge branch 'master' of github.com:Phundrak/lzw-assignment

This commit is contained in:
Phuntsok Drak-pa 2018-04-15 21:07:15 +02:00
commit 8b281854ee
4 changed files with 32 additions and 8 deletions

9
README.md Normal file
View File

@ -0,0 +1,9 @@
[![Travis Badge](https://travis-ci.org/Phundrak/lzw-assignment.svg?branch=master)](https://travis-ci.org/Phundrak/lzw-assignment)
[![Codacy Badge](https://api.codacy.com/project/badge/Grade/e8fd3d18f7c54055ac30dca378d2ada8)](https://www.codacy.com/app/Phundrak/PhundrakSTL?utm_source=github.com&utm_medium=referral&utm_content=Phundrak/PhundrakSTL&utm_campaign=Badge_Grade)
[![Spacemacs Badge](https://cdn.rawgit.com/syl20bnr/spacemacs/442d025779da2f62fc86c2082703697714db6514/assets/spacemacs-badge.svg)](http://spacemacs.org)
# LZW Compressing tool
This is a university assignment for which I aim to create an LZW algorithm implementation to create a small tool similar to `gzip` and `gunzip` that can compress and uncompress files in a lossless fashion.
This project is written is C++17, compiled with clang under a UNIX environment. Other compilers and environments will not be tested.

View File

@ -1,7 +0,0 @@
[[https://travis-ci.org/Phundrak/lzw-assignment][https://travis-ci.org/Phundrak/lzw-assignment.svg?branch=master]] [[http://spacemacs.org][file:https://cdn.rawgit.com/syl20bnr/spacemacs/442d025779da2f62fc86c2082703697714db6514/assets/spacemacs-badge.svg]]
* LZW Compressing tool
This is a university assignment for which I aim to create an LZW algorithm implementation to create a small tool similar to =gzip= and =gunzip= that can compress and uncompress files in a lossless fashion.
This project is written is C++17, compiled with clang under a UNIX environment. Other compilers and environments will not be tested.

22
appveyor.yml Normal file
View File

@ -0,0 +1,22 @@
version: '{branch}-{build}'
environment:
matrix:
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
MSVC_GENERATOR: Visual Studio 15 2017
MSVC_GENERATOR_SHORT: VS2017
platform:
- x64
shallow_clone: true
before_build:
- cmd: choco install make
build_script:
- cmd: set PATH=%PATH%;C:\ProgramData\chocolatey\lib\make\tools
- cmd: cd build
- cmd: cmake -DCMAKE_BUILD_TYPE=Debug ..
- cmd: dir
- cmd: make

View File

@ -45,7 +45,7 @@ void write_utf8(FILE* t_out, uint32_t t_c) {
ustring str(loops + 1, 0);
for (size_t i = 0; i <= loops; ++i) {
str[i] = static_cast<unsigned char>(
((t_c & (i == loops) ? 0x3F : 0xFF) >> ((loops - i) * 6)) +
((t_c & ((i == loops) ? 0x3F : 0xFF)) >> ((loops - i) * 6)) +
((i == 0) ? header : 0x80));
}
fwrite(str.data(), sizeof(unsigned char), str.size(), t_out);