-
Notifications
You must be signed in to change notification settings - Fork 0
/
fileParser.c~
61 lines (58 loc) · 1.18 KB
/
fileParser.c~
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
#include "fileParser.h"
void createFileParser(TFileParser* this,char* inFile,int argc){
if (argc!=3)
this->fp = stdin;
else {
this->fp = fopen(inFile, "r");
}
}
void destroyFileParser(TFileParser* this){
fclose(this->fp);
}
void getSizes(TFileParser* this){
//El archivo ya esta abierto
uint x,y;
fscanf(this->fp, "%uX%u", &x, &y);
this->dimX = x;
this->dimY = y;
}
int getX(TFileParser* this){
return this->dimX
}
//void getSizes(char* inFile,int argc,unsigned * dimX, unsigned * dimY){
// FILE *fp;
// unsigned j,i,x,y,endOfSize;
//
// i=0;
// if (argc!=3)
// {printf("entre aca \n");
// fp = stdin;
// }
// else {
// fp= fopen(inFile, "r");
// if (fp == NULL)
// return ;
// }
// fscanf(fp,"%uX%u",&x,&y);
// endOfSize = ftell(fp);
// printf("la posicion del cursor es : %d\n",endOfSize);
// while ( fgetc(fp) != '\n' )
// {
// i++;
// printf(" i : %u\n",i);
// }
// fseek(fp, endOfSize , SEEK_SET);
// char buffer[i];
// fscanf(fp,"%s", buffer);
// for (j=0; j<i-1 ; j++)
// printf("%c, ",buffer[j]);
// fseek(fp,endOfSize + i,SEEK_SET);
// fscanf(fp,"%uX%u",&x,&y);
// fclose(fp);
// *dimX = x;
// *dimY = y;
//}
//
//void getLine(char* inFile, int argc){
// return;
//}