CommonTater , I'll publish only parts -the whole project you can see in attachments to the previous post
the entry file (with main() func) =
#include <stdio.h>
#include <stdlib.h>
#include "comlib.h"
#include "task1.h"
int main()
{ int result= TRUE;
os_founders_respect();
mainmenu();
return 0;
}
.............
the second source =
#include<stdio.h>
#include <stdlib.h>
#include "comlib.h"
#include "task1.h"
int task1standard(void)
{
//FILE *file1, *file2, *file3;
int result= TRUE;
char **arr,*ftext,**arr1,**arr2;
FILE *fp,*fp2,*rfp;
..................
}
additional comlib.c ( custom funcs for general purpose) =
#include <stdio.h>
#include <stdlib.h>
#include "comlib.h"
int tdarrs_cmp(char **arr1,char **arr2, FILE *rfp)
{ /* */
int k=0;
int n1=1;
int n2=1;
if (!rfp) rfp=fopen("compRESULT.txt","w");
printf("\n\n[%s]\n", "...comparation of two two-demision arrays showing is started...");