removed bettercode
This commit is contained in:
parent
cbd6d89234
commit
d901cd60f2
@ -1,6 +0,0 @@
|
||||
component_depth: 2
|
||||
languages:
|
||||
- cpp
|
||||
exclude:
|
||||
- .*\.h
|
||||
- .*\.c
|
@ -3,7 +3,6 @@
|
||||
[](https://www.codacy.com/app/Phundrak/lzw-assignment?utm_source=github.com&utm_medium=referral&utm_content=Phundrak/lzw-assignment&utm_campaign=Badge_Grade)
|
||||
[](https://www.codefactor.io/repository/github/phundrak/lzw-assignment)
|
||||
[](http://spacemacs.org)
|
||||
[](https://bettercodehub.com/)
|
||||
|
||||
# LZW Compressing tool
|
||||
|
||||
|
@ -10,12 +10,13 @@
|
||||
#include <vector>
|
||||
|
||||
/// \brief Packs std::uint16_t of n bits into unsigned char
|
||||
std::vector<unsigned char> pack_n(const std::vector<std::uint16_t>::const_iterator,
|
||||
const std::vector<std::uint16_t>::const_iterator,
|
||||
int);
|
||||
std::vector<unsigned char>
|
||||
pack_n(const std::vector<std::uint16_t>::const_iterator,
|
||||
const std::vector<std::uint16_t>::const_iterator, int);
|
||||
|
||||
/// \brief Specialization of \ref pack_n for 16bits
|
||||
std::vector<unsigned char> pack_16(const std::vector<std::uint16_t>::const_iterator,
|
||||
std::vector<unsigned char>
|
||||
pack_16(const std::vector<std::uint16_t>::const_iterator,
|
||||
const std::vector<std::uint16_t>::const_iterator);
|
||||
|
||||
#endif /* LZW_SRC_BITPACK_H_ */
|
||||
|
Loading…
x
Reference in New Issue
Block a user