mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-11-18 17:42:36 -05:00
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:
parent
9c5318beb3
commit
530abe84fd
1 changed files with 3 additions and 3 deletions
|
|
@ -347,7 +347,7 @@ static void voice_stop(void);
|
|||
|
||||
/* --- Helper functions --- */
|
||||
|
||||
struct mp3entry *bufgetid3(int handle_id)
|
||||
static struct mp3entry *bufgetid3(int handle_id)
|
||||
{
|
||||
if (handle_id < 0)
|
||||
return NULL;
|
||||
|
|
@ -361,7 +361,7 @@ struct mp3entry *bufgetid3(int handle_id)
|
|||
return id3;
|
||||
}
|
||||
|
||||
void *bufgetcodec(struct track_info *track)
|
||||
static void *bufgetcodec(struct track_info *track)
|
||||
{
|
||||
void *ptr;
|
||||
ssize_t ret = bufgetdata(track->codec_hid, track->codecsize, &ptr);
|
||||
|
|
@ -381,7 +381,7 @@ void *bufgetcodec(struct track_info *track)
|
|||
return ptr;
|
||||
}
|
||||
|
||||
bool clear_track_info(struct track_info *track)
|
||||
static bool clear_track_info(struct track_info *track)
|
||||
{
|
||||
if (!track)
|
||||
return false;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue