forked from len0rd/rockbox
Make thirty functions static to reduce binary size
If any of those functions should be (unused) API functions, they can easily be turned back once really needed. Detected using a new cppcheck check that uses the internal symbol database to catch functions that are only used in the current file. Change-Id: Ic2b1e5b8020b76397f11cefc4e205f3b7ac1f184
This commit is contained in:
parent
c907e127f8
commit
fdd4aef340
10 changed files with 30 additions and 30 deletions
|
@ -160,9 +160,9 @@ struct skin_element* skin_parse(const char* document,
|
|||
struct skin_element* skin_parse(const char* document);
|
||||
#endif
|
||||
/* Memory management functions */
|
||||
struct skin_element* skin_alloc_element(void);
|
||||
OFFSETTYPE(struct skin_element*)* skin_alloc_children(int count);
|
||||
struct skin_tag_parameter* skin_alloc_params(int count);
|
||||
static struct skin_element* skin_alloc_element(void);
|
||||
static OFFSETTYPE(struct skin_element*)* skin_alloc_children(int count);
|
||||
static struct skin_tag_parameter* skin_alloc_params(int count);
|
||||
char* skin_alloc_string(int length);
|
||||
|
||||
void skin_free_tree(struct skin_element* root);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue