Ignore:
Timestamp:
09/23/07 22:09:10 (17 years ago)
Author:
r2d
Message:

changed copyright info

File:
1 edited

Legend:

Unmodified
Added
Removed
  • libmpc/trunk/mpccut/mpccut.c

    r321 r353  
    4646#endif
    4747
     48#define MPCCUT_MAJOR 0
     49#define MPCCUT_MINOR 9
     50#define MPCCUT_BUILD 0
     51
     52#define _cat(a,b,c) #a"."#b"."#c
     53#define cat(a,b,c) _cat(a,b,c)
     54#define MPCCUT_VERSION cat(MPCCUT_MAJOR,MPCCUT_MINOR,MPCCUT_BUILD)
     55
     56const char    About []        = "mpccut - Musepack (MPC) stream cutter v" MPCCUT_VERSION " (C) 2007 MDT\nBuilt " __DATE__ " " __TIME__ "\n";
     57
    4858static void copy_data(FILE * in_file, int in_file_pos, FILE * out_file, int data_size)
    4959{
     
    8191        FILE * in_file;
    8292
    83         printf("mpccut - musepack (mpc) stream cutter\n");
     93        printf(About);
    8494
    8595        while ((c = getopt(argc , argv, "s:e:")) != -1) {
Note: See TracChangeset for help on using the changeset viewer.