Code police: static internal functions.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@15314 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Steve Bavin 2007-10-26 09:39:05 +00:00
parent 9c5318beb3
commit 530abe84fd

View file

@ -347,7 +347,7 @@ static void voice_stop(void);
/* --- Helper functions --- */ /* --- Helper functions --- */
struct mp3entry *bufgetid3(int handle_id) static struct mp3entry *bufgetid3(int handle_id)
{ {
if (handle_id < 0) if (handle_id < 0)
return NULL; return NULL;
@ -361,7 +361,7 @@ struct mp3entry *bufgetid3(int handle_id)
return id3; return id3;
} }
void *bufgetcodec(struct track_info *track) static void *bufgetcodec(struct track_info *track)
{ {
void *ptr; void *ptr;
ssize_t ret = bufgetdata(track->codec_hid, track->codecsize, &ptr); ssize_t ret = bufgetdata(track->codec_hid, track->codecsize, &ptr);
@ -381,7 +381,7 @@ void *bufgetcodec(struct track_info *track)
return ptr; return ptr;
} }
bool clear_track_info(struct track_info *track) static bool clear_track_info(struct track_info *track)
{ {
if (!track) if (!track)
return false; return false;