Add missing EOF LF

This commit is contained in:
Philippe Teuwen 2019-03-12 00:12:26 +01:00
commit 1b2601a48a
105 changed files with 107 additions and 107 deletions

View file

@ -21,4 +21,4 @@ typedef struct bucket_info {
void bucket_sort_intersect(uint32_t *const estart, uint32_t *const estop,
uint32_t *const ostart, uint32_t *const ostop,
bucket_info_t *bucket_info, bucket_array_t bucket);
#endif
#endif

View file

@ -61,4 +61,4 @@ uint8_t cmd_send(uint64_t cmd, uint64_t arg0, uint64_t arg1, uint64_t arg2, void
#endif
return sendlen;
}
}

View file

@ -123,4 +123,4 @@ uint32_t CRC8Legic(uint8_t *buff, size_t size) {
for (int i = 0; i < size; ++i)
crc_update2(&crc, buff[i], 8);
return reflect8(crc_finish(&crc));
}
}

View file

@ -67,4 +67,4 @@ void reset_table(void);
void generate_table(uint16_t polynomial, bool refin);
uint16_t crc16_fast(uint8_t const *d, size_t n, uint16_t initval, bool refin, bool refout);
#endif
#endif

View file

@ -29,4 +29,4 @@ void crc32_ex(const uint8_t *data, const size_t len, uint8_t *crc) {
void crc32_append(uint8_t *data, const size_t len) {
crc32_ex(data, len, data + len);
}
}

View file

@ -80,4 +80,4 @@ void crc64(const uint8_t *data, const size_t len, uint64_t *crc) {
}
}
//suint8_t x = (c & 0xFF00000000000000 ) >> 56;
//suint8_t x = (c & 0xFF00000000000000 ) >> 56;

View file

@ -48,4 +48,4 @@ void SmartCardUpgrade(uint64_t arg0);
void SmartCardSetBaud(uint64_t arg0);
void SmartCardSetClock(uint64_t arg0);
void I2C_print_status(void);
#endif
#endif

View file

@ -22,4 +22,4 @@ char *Iso15693sprintUID(char *target, uint8_t *uid) {
uid[3], uid[2], uid[1], uid[0]
);
return target;
}
}

View file

@ -123,4 +123,4 @@ static const int Iso15693FrameEOF[] = {
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1
};
#endif
#endif

View file

@ -62,4 +62,4 @@ uint32_t legic_prng_get_bits(uint8_t len) {
legic_prng_forward(1);
}
return a;
}
}

View file

@ -21,4 +21,4 @@ void burtle_init_mod(prng_ctx *x, uint32_t seed);
void burtle_init(prng_ctx *x, uint32_t seed);
uint32_t GetSimplePrng(uint32_t seed);
#endif /* __PRNG_H */
#endif /* __PRNG_H */

View file

@ -96,4 +96,4 @@ uint64_t *radixSort(uint64_t *array, uint32_t size) {
}
free(cpy);
return array;
}
}

View file

@ -20,4 +20,4 @@ typedef union {
} rscounts_t;
uint64_t *radixSort(uint64_t *array, uint32_t size);
#endif // RADIXSORT_H__
#endif // RADIXSORT_H__

View file

@ -18,4 +18,4 @@
void fast_prand();
void fast_prandEx(uint32_t seed);
uint32_t prand();
#endif
#endif

View file

@ -15,4 +15,4 @@
#include <stddef.h>
void tea_encrypt(uint8_t *v, uint8_t *key);
void tea_decrypt(uint8_t *v, uint8_t *key);
#endif /* __TEA_H */
#endif /* __TEA_H */

View file

@ -140,4 +140,4 @@ void usart_init(void) {
// re-enable receiver / transmitter
pUS1->US_CR = (AT91C_US_RXEN | AT91C_US_TXEN);
}
}

View file

@ -949,4 +949,4 @@ void AT91F_CDC_Enumerate() {
AT91F_USB_SendStall(pUdp);
break;
}
}
}

View file

@ -236,4 +236,4 @@ void num_to_wiegand_bits(uint64_t oem, uint64_t fc, uint64_t cn, uint8_t *dest,
default:
break;
}
}
}