Another small bookmark.c revision, no functional change, saves bin size
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@25503 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
b2ba11201f
commit
bec9232857
1 changed files with 8 additions and 2 deletions
|
@ -62,7 +62,7 @@ struct bookmark_list
|
||||||
};
|
};
|
||||||
|
|
||||||
/* bookmark flags */
|
/* bookmark flags */
|
||||||
#define F_BMFILES 0x001
|
#define F_BMFILES 0x01
|
||||||
|
|
||||||
/* bookmark values */
|
/* bookmark values */
|
||||||
static struct {
|
static struct {
|
||||||
|
@ -916,6 +916,12 @@ static const char* skip_token(const char* s)
|
||||||
return s;
|
return s;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static const char* long_token(const char* s, long* dest)
|
||||||
|
{
|
||||||
|
*dest = atoi(s); /* Should be atol, but we don't have it. */
|
||||||
|
return skip_token(s);
|
||||||
|
}
|
||||||
|
|
||||||
/* ----------------------------------------------------------------------- */
|
/* ----------------------------------------------------------------------- */
|
||||||
/* This function takes a bookmark and parses it. This function also */
|
/* This function takes a bookmark and parses it. This function also */
|
||||||
/* validates the bookmark. Flags are set to indicate which bookmark */
|
/* validates the bookmark. Flags are set to indicate which bookmark */
|
||||||
|
@ -927,7 +933,7 @@ static bool parse_bookmark(const char *bookmark, const int flags)
|
||||||
const char* end;
|
const char* end;
|
||||||
|
|
||||||
#define FLAG(a) (flags & a)
|
#define FLAG(a) (flags & a)
|
||||||
#define GET_INT_TOKEN(var) var = atoi(s); s = skip_token(s)
|
#define GET_INT_TOKEN(var) s = long_token(s, (long *)&var)
|
||||||
#define GET_BOOL_TOKEN(var) var = (atoi(s)!=0); s = skip_token(s)
|
#define GET_BOOL_TOKEN(var) var = (atoi(s)!=0); s = skip_token(s)
|
||||||
|
|
||||||
GET_INT_TOKEN(bm.resume_index);
|
GET_INT_TOKEN(bm.resume_index);
|
||||||
|
|
Loading…
Reference in a new issue