summaryrefslogtreecommitdiff
path: root/firmware/include/font_cache.h
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/include/font_cache.h')
-rw-r--r--firmware/include/font_cache.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/firmware/include/font_cache.h b/firmware/include/font_cache.h
index 2334961002..e625abb79e 100644
--- a/firmware/include/font_cache.h
+++ b/firmware/include/font_cache.h
@@ -17,7 +17,8 @@
17 * KIND, either express or implied. 17 * KIND, either express or implied.
18 * 18 *
19 ****************************************************************************/ 19 ****************************************************************************/
20 20#ifndef _FONT_CACHE_H_
21#define _FONT_CACHE_H_
21#include "lru.h" 22#include "lru.h"
22 23
23/******************************************************************************* 24/*******************************************************************************
@@ -48,3 +49,5 @@ struct font_cache_entry* font_cache_get(
48 unsigned short char_code, 49 unsigned short char_code,
49 void (*callback) (struct font_cache_entry* p, void *callback_data), 50 void (*callback) (struct font_cache_entry* p, void *callback_data),
50 void *callback_data); 51 void *callback_data);
52
53#endif