locate: add "pure" attributes

This commit is contained in:
Max Kellermann 2012-08-07 23:43:36 +02:00
parent 9e51733c71
commit 668e3f664f
2 changed files with 5 additions and 0 deletions

View File

@ -104,6 +104,7 @@ locate_item_list_parse(char *argv[], int argc, bool fold_case)
return list; return list;
} }
gcc_pure
static bool static bool
locate_tag_search(const struct song *song, enum tag_type type, const char *str) locate_tag_search(const struct song *song, enum tag_type type, const char *str)
{ {
@ -164,6 +165,7 @@ locate_song_search(const struct song *song,
return true; return true;
} }
gcc_pure
static bool static bool
locate_tag_match(const struct song *song, enum tag_type type, const char *str) locate_tag_match(const struct song *song, enum tag_type type, const char *str)
{ {

View File

@ -48,6 +48,7 @@ struct locate_item_list {
struct locate_item items[1]; struct locate_item items[1];
}; };
gcc_pure
int int
locate_parse_type(const char *str); locate_parse_type(const char *str);
@ -67,11 +68,13 @@ gcc_nonnull(1)
void void
locate_item_list_free(struct locate_item_list *list); locate_item_list_free(struct locate_item_list *list);
gcc_pure
gcc_nonnull(1,2) gcc_nonnull(1,2)
bool bool
locate_song_search(const struct song *song, locate_song_search(const struct song *song,
const struct locate_item_list *criteria); const struct locate_item_list *criteria);
gcc_pure
gcc_nonnull(1,2) gcc_nonnull(1,2)
bool bool
locate_song_match(const struct song *song, locate_song_match(const struct song *song,