From 5fa9f2cbc34d84f2bb0239f8d87efd08d30b5043 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Romain=20Tarti=C3=A8re?= Date: Mon, 28 Jan 2013 15:55:22 +0100 Subject: [PATCH] Remove a few static. Cutter can't test suche methods. --- libfreefare/mad.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libfreefare/mad.c b/libfreefare/mad.c index aa06d5a..c547650 100644 --- a/libfreefare/mad.c +++ b/libfreefare/mad.c @@ -126,7 +126,7 @@ mad_new (uint8_t version) /* * Compute CRC. */ -static void +void nxp_crc (uint8_t *crc, const uint8_t value) { /* x^8 + x^4 + x^3 + x^2 + 1 => 0x11d */ @@ -142,7 +142,7 @@ nxp_crc (uint8_t *crc, const uint8_t value) } } -static uint8_t +uint8_t sector_0x00_crc8 (Mad mad) { uint8_t crc = CRC_PRESET; @@ -157,7 +157,7 @@ sector_0x00_crc8 (Mad mad) return crc; } -static uint8_t +uint8_t sector_0x10_crc8 (Mad mad) { uint8_t crc = CRC_PRESET;