Make a couple of private functions static
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17087 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
a7af9e4a7f
commit
660dbac5c9
1 changed files with 7 additions and 7 deletions
|
@ -23,7 +23,7 @@
|
|||
/*******************************************************************************
|
||||
* font_cache_lru_init
|
||||
******************************************************************************/
|
||||
void font_cache_lru_init(void* data)
|
||||
static void font_cache_lru_init(void* data)
|
||||
{
|
||||
struct font_cache_entry* p = data;
|
||||
p->_char_code = 0xffff; /* assume invalid char */
|
||||
|
@ -69,7 +69,7 @@ void font_cache_create(
|
|||
/*******************************************************************************
|
||||
* font_cache_index_of
|
||||
******************************************************************************/
|
||||
int font_cache_index_of(
|
||||
static int font_cache_index_of(
|
||||
struct font_cache* fcache,
|
||||
unsigned short char_code)
|
||||
{
|
||||
|
@ -101,7 +101,7 @@ int font_cache_index_of(
|
|||
/*******************************************************************************
|
||||
* font_cache_insertion_point
|
||||
******************************************************************************/
|
||||
int font_cache_insertion_point(
|
||||
static int font_cache_insertion_point(
|
||||
struct font_cache* fcache,
|
||||
unsigned short char_code)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue