Browse Source

Added short comments.

master
Svend Sorensen 18 years ago
parent
commit
01eb4f7a16
3 changed files with 6 additions and 0 deletions
  1. +2
    -0
      src/tools/cuebreakpoints.c
  2. +2
    -0
      src/tools/cueconvert.c
  3. +2
    -0
      src/tools/cueprint.c

+ 2
- 0
src/tools/cuebreakpoints.c View File

@@ -28,6 +28,7 @@ char *progname;
*/
enum GapMode {APPEND, PREPEND, SPLIT};

/* Print usage information and exit */
void usage (int status)
{
if (0 == status) {
@@ -48,6 +49,7 @@ void usage (int status)
exit (status);
}

/* Print version information and exit */
void version ()
{
printf("%s\n", PACKAGE_STRING);


+ 2
- 0
src/tools/cueconvert.c View File

@@ -19,6 +19,7 @@

char *progname;

/* Print usage information and exit */
void usage (int status)
{
if (0 == status) {
@@ -37,6 +38,7 @@ void usage (int status)
exit (status);
}

/* Print version information and exit */
void version ()
{
printf("%s\n", PACKAGE_STRING);


+ 2
- 0
src/tools/cueprint.c View File

@@ -61,6 +61,7 @@ typedef union {

char *progname;

/* Print usage information and exit */
void usage (int status)
{
if (0 == status) {
@@ -86,6 +87,7 @@ void usage (int status)
exit (status);
}

/* Print version information and exit */
void version ()
{
printf("%s\n", PACKAGE_STRING);


Loading…
Cancel
Save