diff options
author | Nils Wallménius <nils@rockbox.org> | 2009-02-08 11:09:55 +0000 |
---|---|---|
committer | Nils Wallménius <nils@rockbox.org> | 2009-02-08 11:09:55 +0000 |
commit | 5a55772201829dc0055cc8d3022cc475ccbc2643 (patch) | |
tree | 65440f5944388c9db3a439df7f37a75e5431709d /apps/cuesheet.c | |
parent | eda5ed06244abba643e09a775d71542d91691d4d (diff) |
Small code reuse improvement
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19943 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/cuesheet.c')
-rw-r--r-- | apps/cuesheet.c | 9 |
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; |