Procházet zdrojové kódy

Use static variables for crc8fast

master
Arun Prakash Jana před 6 roky
rodič
revize
02a2551a17
V databázi nebyl nalezen žádný známý klíč pro tento podpis ID GPG klíče: A75979F35C080412
1 změnil soubory, kde provedl 3 přidání a 5 odebrání
  1. +3
    -5
      nnn.c

+ 3
- 5
nnn.c Zobrazit soubor

@@ -354,13 +354,11 @@ crc8init()
static uchar
crc8fast(uchar const message[], size_t n)
{
uchar data;
uchar remainder = 0;
size_t byte;

static uchar data, remainder;
static size_t byte;

/* Divide the message by the polynomial, a byte at a time */
for (byte = 0; byte < n; ++byte) {
for (remainder = byte = 0; byte < n; ++byte) {
data = message[byte] ^ (remainder >> (WIDTH - 8));
remainder = crc8table[data] ^ (remainder << 8);
}


Načítá se…
Zrušit
Uložit