-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmydiff_func_header.h
37 lines (34 loc) · 1.09 KB
/
mydiff_func_header.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/**** STANDARD INCLUDE FILES SECTION ******/
#include<stdio.h>
#include<string.h>
#include<stdlib.h>
/******** CONSTANT DEFINITION SECTION ********/
#define SUCCESS 1
#define FAILURE 0
#define FILE_ONE 1
#define FILE_TWO 2
#define NO_TEMP_FILE 0
#define TEMP_FILE 1
#define LINE_SIZE 150
/****** NEW DATA TYPE DEFINITION SECTION *******/
struct info
{
int file1NumOfLinesRead;
int file2NumOfLinesRead;
int linesTraversedTillFound;
unsigned int found;
unsigned int retStatus;
};
/******* FUNCTION PROTOTYPE SECTION **********/
int readLineFromFile(FILE *, char *);
int compareFiles(FILE *, FILE *, char *, char *);
void initializeInfoBuffer(struct info *infoBuffer);
int allocateMemory(char **);
int readRemainingLinesFromFile(FILE *, int);
int addLinesToFileOne(int, int, int, int);
int deleteLinesFromFileOne(int, int, int);
struct info searchLineInFile(FILE *, char*, int, char *);
struct info lookUpNextMatch(FILE *, FILE *);
int changeLinesInFile(int , int , int , int);
void displayResults(char *, char *, int);
int diff(char **, char **);