Generated v2 prefixes

This commit is contained in:
geky-bot
2024-01-23 18:48:17 +00:00
17 changed files with 455 additions and 250 deletions
+3
View File
@@ -11,6 +11,8 @@
#ifndef LFS2_CONFIG
// If user provides their own CRC impl we don't need this
#ifndef LFS2_CRC
// Software CRC implementation with small lookup table
uint32_t lfs2_crc(uint32_t crc, const void *buffer, size_t size) {
static const uint32_t rtable[16] = {
@@ -29,6 +31,7 @@ uint32_t lfs2_crc(uint32_t crc, const void *buffer, size_t size) {
return crc;
}
#endif
#endif