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/mpc2sv8/mpc2sv8.c

    r317 r353  
    4242#define TMP_BUF_SIZE 128
    4343
     44#define MPC2SV8_MAJOR 0
     45#define MPC2SV8_MINOR 9
     46#define MPC2SV8_BUILD 0
     47
     48#define _cat(a,b,c) #a"."#b"."#c
     49#define cat(a,b,c) _cat(a,b,c)
     50#define MPC2SV8_VERSION cat(MPC2SV8_MAJOR,MPC2SV8_MINOR,MPC2SV8_BUILD)
     51
     52const char    About []        = "mpc2sv8 - Musepack (MPC) sv7 to sv8 converter v" MPC2SV8_VERSION " (C) 2007 MDT\nBuilt " __DATE__ " " __TIME__ "\n";
     53
    4454static void datacpy(mpc_decoder * d, mpc_encoder_t * e)
    4555{
     
    8999        char buf[TMP_BUF_SIZE];
    90100
    91     printf("mpc2sv8 - musepack (mpc) sv7 to sv8 converter\n");
     101    printf(About);
    92102    if(3 != argc) {
    93103        usage(argv[0]);
Note: See TracChangeset for help on using the changeset viewer.