From 04d2779cce0b5e0cd9ff8525de41f8f7d3f766dc Mon Sep 17 00:00:00 2001 From: Alex 'AdUser' Z Date: Thu, 13 Mar 2014 13:13:14 +1100 Subject: [PATCH] * rename type : bitmap -> bitmap_t --- src/bitmap.c | 2 +- src/bitmap.h | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/bitmap.c b/src/bitmap.c index ea79eac..5b0d9cb 100644 --- a/src/bitmap.c +++ b/src/bitmap.c @@ -17,7 +17,7 @@ #include "main.h" #include "bitmap.h" -int bitmap_compare(bitmap *a, bitmap *b) +int bitmap_compare(bitmap_t *a, bitmap_t *b) { uint16_t row = 0; uint16_t diff = 0; diff --git a/src/bitmap.h b/src/bitmap.h index 85eda6b..96cd345 100644 --- a/src/bitmap.h +++ b/src/bitmap.h @@ -1,3 +1,3 @@ -typedef uint16_t bitmap[16]; +typedef uint16_t bitmap_t[16]; -int bitmap_compare(bitmap *a, bitmap *b); \ No newline at end of file +int bitmap_compare(bitmap_t *a, bitmap_t *b);