summaryrefslogtreecommitdiff
path: root/apps/cuesheet.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/cuesheet.c')
-rw-r--r--apps/cuesheet.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/apps/cuesheet.c b/apps/cuesheet.c
index 0a7521bbc5..1acb9af5cf 100644
--- a/apps/cuesheet.c
+++ b/apps/cuesheet.c
@@ -108,15 +108,6 @@ bool look_for_cuesheet_file(const char *trackpath, char *found_cue_path)
return true;
}
-static char *skip_whitespace(char* buf)
-{
- char *r = buf;
- while (*r && isspace(*r))
- r++;
- return r;
-}
-
-
static char *get_string(const char *line)
{
char *start, *end;