summaryrefslogtreecommitdiff
path: root/apps/misc.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/misc.h')
-rw-r--r--apps/misc.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/apps/misc.h b/apps/misc.h
index 289d952afb..c6a91646b8 100644
--- a/apps/misc.h
+++ b/apps/misc.h
@@ -110,7 +110,7 @@ void check_bootfile(bool do_rolo);
110void setvol(void); 110void setvol(void);
111 111
112#ifdef HAVE_LCD_COLOR 112#ifdef HAVE_LCD_COLOR
113int hex_to_rgb(const char* hex); 113int hex_to_rgb(const char* hex, int* color);
114#endif 114#endif
115 115
116char* strrsplt(char* str, int c); 116char* strrsplt(char* str, int c);
@@ -124,4 +124,7 @@ bool dir_exists(const char *path);
124 */ 124 */
125char *strip_extension(char* buffer, int buffer_size, const char *filename); 125char *strip_extension(char* buffer, int buffer_size, const char *filename);
126 126
127/* A simplified scanf */
128const char* parse_list(const char *fmt, const char sep, const char* str, ...);
129
127#endif /* MISC_H */ 130#endif /* MISC_H */