From 4bb80cca58fc353e188d61c17d7fc4ff5a971f5d Mon Sep 17 00:00:00 2001 From: Svend Sorensen Date: Tue, 31 Aug 2004 07:43:26 +0000 Subject: [PATCH] Add TODOs re. new code. --- tools/cueprint.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tools/cueprint.c b/tools/cueprint.c index 82fe72f..6853da6 100644 --- a/tools/cueprint.c +++ b/tools/cueprint.c @@ -180,9 +180,13 @@ void print_info (Cd *cd) for (i = 1; i <= cd_get_ntrack(cd); i++) { for (c = t_template; '\0' != *c; c++) { + /* TODO: should apply escapes and width to disc + * template as well + */ if ('\\' == *c) { c++; + /* TODO: add more (all?) escapes */ switch (*c) { case 'n': putchar('\n'); @@ -198,6 +202,7 @@ void print_info (Cd *cd) c++; /* parse flags */ + /* TODO: zero-padding does nothing */ do { switch (*c) { case '0': /* zero-padding */