/*This programm converts macedonia's character set to 928.In order to execute it you must compile it with gcc . */ #include #include void main(int argc, char *argv[]) { int i,c; FILE * fp; FILE * fp1; if (argc!=3) { printf("\n\nMacedonia2_928 Converter *Version 1.3* by Spiros Ioannou\n"); printf("Syntax:mac2_928 infile outfile (infile must be different than outfile)\n\n");} else if (strcmp(argv[1],argv[2])==0) {printf("INFILE SHOULD BE DIFFERENT FROM OUTFILE");} else if ((fp=fopen(*++argv,"r")) == NULL) {printf("I cannot open %s \n",argv[0]); } else { fp1=fopen(*++argv,"w"); while ((c=getc(fp)) != EOF) { if (203<=c&&c<=210) c--; else if (215