forked from len0rd/rockbox
First stages of rockboy menu - press A/B mode to enter, contributed by pabs
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6120 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
3921e1aa69
commit
cd040ddd7c
5 changed files with 33 additions and 34 deletions
|
|
@ -42,9 +42,15 @@ void sys_sleep(int us);
|
|||
int pcm_submit(void);
|
||||
void pcm_init(void);
|
||||
void doevents(void);
|
||||
int isupper(int c);
|
||||
int isdigit(int c);
|
||||
void ev_poll(void);
|
||||
int do_user_menu(void);
|
||||
#define USER_MENU_QUIT -2
|
||||
|
||||
|
||||
/* libc functions */
|
||||
#define isdigit(c) ((c) >= '0' && (c) <= '9')
|
||||
#define isalpha(c) (((c) >= 'a' && (c) <= 'z') || ((c) >= 'A' && ((c) <= 'Z')))
|
||||
#define isalnum(c) (isdigit(c) || (isalpha(c)))
|
||||
|
||||
#ifdef SIMULATOR
|
||||
#undef opendir
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue