Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 7985 → Rev 8383

/programs/cmm/diff/diff.c
2,10 → 2,9
//by den po - jdp@bk.ru
 
#define MEMSIZE 4096 * 60
#include "../lib/io.h"
#include "../lib/fs.h"
#include "../lib/strings.h"
#include "../lib/obj/console.h"
IO io1, io2;
 
#define MAX_PATH 260
 
92,12 → 91,9
char s1;
int s2;
 
srcfile = io1.read(srcfilename);
dstfile = io2.read(dstfilename);
read_file(srcfilename, #srcfile, #srcfilesize);
read_file(dstfilename, #dstfile, #dstfilesize);
 
srcfilesize = io1.FILES_SIZE;
dstfilesize = io2.FILES_SIZE;
 
if (!srcfile) die("'First file not found' -E");
if (!dstfile) die("'Second file not found' -E");