diff -r vecsound-c/coder.c/main.c vecsound-cpp/coder.c/main.c
5c5
< //#include <fstream.h>
---
> #include <fstream.h>
48c48
<  printf("\nCalling ");
---
>  cout <<"\nCalling ";
50,51c50,51
<    printf(" %s", argv[ii]);
<  printf("\n\n");
---
>    cout <<" "<<argv[ii];
>  cout << "\n\n";
54,55c54,55
<    printf("Usage: ym_vpack <infile> options... (-h for more help)\n");
<    printf("ym_vpack = YM (Sound processor) to Vectrex PSG readable packer. \n");
---
>   cout << "Usage: ym_vpack <infile> options... (-h for more help)\n";
>   cout << "ym_vpack = YM (Sound processor) to Vectrex PSG readable packer. \n";
181c181
<       printf("A file error occured with %s!\n", argv[i]);
---
>      cout << "A file error occured with " << argv[i] << "!\n";
196c196
<    printf("No input file given...!\n");
---
>   cout << "No input file given..."<< "!\n";



diff -r vecsound-c/decoder.c/decode.cpp vecsound-cpp/decoder.c/decode.cpp
8c8
< //#include <fstream.h>
---
> #include <fstream.h>
78c78
<   printf("\nCalling ");
---
>  cout <<" \nCalling ";
80,81c80,81
<    printf(" %s", argv[ii]);
<  printf(" \n \n");
---
>    cout <<" "<<argv[ii];
>  cout << " \n \n";
84c84
<   printf("Usage: decode <infile>  \n");
---
>   cout << "Usage: decode <infile>  \n";
90c90
<   printf("A file error occured with %s! \n", argv[1]);;
---
>   cout << "A file error occured with " << argv[1] << "! \n";
