removed redundant function to compose reader short frame

This commit is contained in:
roel@libnfc.org 2013-04-03 08:45:04 +00:00
commit 195af47289
4 changed files with 36 additions and 80 deletions

View file

@ -12,6 +12,10 @@
#include "util.h"
#include "string.h"
size_t nbytes(size_t nbits) {
return (nbits/8)+((nbits%8)>0);
}
uint32_t SwapBits(uint32_t value, int nrbits) {
int i;
uint32_t newvalue = 0;