Removed trailing whitespace.

This commit is contained in:
Svend Sorensen
2005-02-09 03:13:08 +00:00
parent 8ed8f4d541
commit 1e8087e1b8
9 changed files with 13 additions and 13 deletions

View File

@@ -1,4 +1,4 @@
/* /*
* cd.h -- cd structure * cd.h -- cd structure
* *
* Copyright (C) 2004 Svend Sorensen * Copyright (C) 2004 Svend Sorensen
@@ -79,7 +79,7 @@ Cd *cd_init ();
void cd_dump (Cd *cd); void cd_dump (Cd *cd);
/* /*
* Cd functions * Cd functions
*/ */
void cd_set_mode (Cd *cd, int mode); void cd_set_mode (Cd *cd, int mode);
@@ -88,7 +88,7 @@ int cd_get_mode (Cd *cd);
void cd_set_catalog (Cd *cd, char *catalog); void cd_set_catalog (Cd *cd, char *catalog);
char *cd_get_catalog (Cd *cd); char *cd_get_catalog (Cd *cd);
/* /*
* return pointer to cd's Cdtext * return pointer to cd's Cdtext
*/ */
Cdtext *cd_get_cdtext (Cd *cd); Cdtext *cd_get_cdtext (Cd *cd);

View File

@@ -1,4 +1,4 @@
/* /*
* cdtext.c -- cdtext data structure and functions * cdtext.c -- cdtext data structure and functions
* *
* Copyright (C) 2004 Svend Sorensen * Copyright (C) 2004 Svend Sorensen

View File

@@ -46,7 +46,7 @@ Cdtext *cdtext_init ();
/* release a Cdtext */ /* release a Cdtext */
void cdtext_delete (Cdtext *cdtext); void cdtext_delete (Cdtext *cdtext);
/* returns non-zero if there are no CD-TEXT fields set, zero otherwise */ /* returns non-zero if there are no CD-TEXT fields set, zero otherwise */
int cdtext_is_empty (Cdtext *cdtext); int cdtext_is_empty (Cdtext *cdtext);
/* set CD-TEXT field to value for PTI pti */ /* set CD-TEXT field to value for PTI pti */

View File

@@ -17,7 +17,7 @@
extern int cue_yylex(); extern int cue_yylex();
void yyerror (char *s); void yyerror (char *s);
static Cd *cd = NULL; static Cd *cd = NULL;
static Track *track = NULL; static Track *track = NULL;
static Track *prev_track = NULL; static Track *prev_track = NULL;
static Cdtext *cdtext = NULL; static Cdtext *cdtext = NULL;

View File

@@ -43,7 +43,7 @@ void cue_print_track (FILE *fp, Track *track, int trackno)
int i; /* index */ int i; /* index */
if (NULL != track_get_filename(track)) { if (NULL != track_get_filename(track)) {
/* /*
* always print filename for track 1, afterwards only * always print filename for track 1, afterwards only
* print filename if it differs from the previous track * print filename if it differs from the previous track
*/ */

View File

@@ -44,7 +44,7 @@ Cd *cf_parse (char *name, int *format)
return cd; return cd;
} }
int cf_print (char *name, int *format, Cd *cd) int cf_print (char *name, int *format, Cd *cd)
{ {
FILE *fp = NULL; FILE *fp = NULL;

View File

@@ -1,4 +1,4 @@
/* /*
* cuefile.h -- cue/toc public declarations * cuefile.h -- cue/toc public declarations
* *
* Copyright (C) 2004 Svend Sorensen * Copyright (C) 2004 Svend Sorensen

View File

@@ -33,7 +33,7 @@ static Cdtext *cdtext = NULL;
%token <sval> STRING %token <sval> STRING
/* global (header) */ /* global (header) */
%token CATALOG %token CATALOG
%token <ival> CD_DA %token <ival> CD_DA
%token <ival> CD_ROM %token <ival> CD_ROM
@@ -65,7 +65,7 @@ static Cdtext *cdtext = NULL;
%token DATAFILE %token DATAFILE
%token FIFO %token FIFO
%token START %token START
%token PREGAP %token PREGAP
%token INDEX %token INDEX
/* CD-TEXT */ /* CD-TEXT */
@@ -153,7 +153,7 @@ track_def
; ;
track_modes track_modes
: track_mode : track_mode
| track_mode track_sub_mode { track_set_sub_mode(track, $2); } | track_mode track_sub_mode { track_set_sub_mode(track, $2); }
; ;

View File

@@ -105,7 +105,7 @@ int main (int argc, char **argv)
break; break;
} }
} }
if (optind == argc) { if (optind == argc) {
convert("-", iformat, "-", oformat); convert("-", iformat, "-", oformat);
} else if (optind == argc - 1) { } else if (optind == argc - 1) {