Fix warnings "no previous prototype for ..." on bitutils.[hc]

This commit is contained in:
Romuald Conty 2010-04-20 09:44:27 +00:00
parent 9abb29f1d1
commit e3ff11eb46
2 changed files with 3 additions and 0 deletions

View file

@ -29,6 +29,7 @@
#include <stdio.h> #include <stdio.h>
#include "bitutils.h" #include "bitutils.h"
#include "nfc/nfc.h"
static const byte_t OddParity[256] = { static const byte_t OddParity[256] = {
1, 0, 0, 1, 0, 1, 1, 0, 0, 1, 1, 0, 1, 0, 0, 1, 1, 0, 0, 1, 0, 1, 1, 0, 0, 1, 1, 0, 1, 0, 0, 1,

View file

@ -49,9 +49,11 @@
#include <nfc/nfc-types.h> #include <nfc/nfc-types.h>
byte_t oddparity(const byte_t bt); byte_t oddparity(const byte_t bt);
void oddparity_bytes(const byte_t* pbtData, const size_t szLen, byte_t* pbtPar);
void oddparity_byte_ts(const byte_t* pbtData, const size_t szLen, byte_t* pbtPar); void oddparity_byte_ts(const byte_t* pbtData, const size_t szLen, byte_t* pbtPar);
NFC_EXPORT byte_t mirror(byte_t bt); NFC_EXPORT byte_t mirror(byte_t bt);
NFC_EXPORT void mirror_bytes(byte_t *pbts, size_t szLen);
NFC_EXPORT uint32_t mirror32(uint32_t ui32Bits); NFC_EXPORT uint32_t mirror32(uint32_t ui32Bits);
NFC_EXPORT uint64_t mirror64(uint64_t ui64Bits); NFC_EXPORT uint64_t mirror64(uint64_t ui64Bits);
NFC_EXPORT void mirror_byte_ts(byte_t *pbts, size_t szLen); NFC_EXPORT void mirror_byte_ts(byte_t *pbts, size_t szLen);