1
0
Fork 0
forked from len0rd/rockbox

Accept FS#9075 and rename valid_vals to set_vals

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17698 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Jonathan Gordon 2008-06-07 09:01:02 +00:00
parent cbbbaac650
commit ae49b387bf
3 changed files with 33 additions and 26 deletions

View file

@ -129,7 +129,14 @@ bool dir_exists(const char *path);
char *strip_extension(char* buffer, int buffer_size, const char *filename);
/* A simplified scanf */
const char* parse_list(const char *fmt, unsigned int *valid_vals,
/*
* Checks whether the value at position 'position' was really read
* during a call to 'parse_list'
* - position: 0-based number of the value
* - valid_vals: value after the call to 'parse_list'
*/
#define LIST_VALUE_PARSED(setvals, position) ((setvals)&(1<<(position)))
const char* parse_list(const char *fmt, unsigned int *set_vals,
const char sep, const char* str, ...);
#endif /* MISC_H */