-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmain.c
58 lines (51 loc) · 1.24 KB
/
main.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
#include<stdio.h>
#include<stdlib.h>
#include<errno.h>
#include "main.h"
extern int yylex();
extern int yylineno;
extern char* yytext;
extern FILE* yyin;
extern int yyparse();
extern void clear_line_string();
extern int yydebug;
char* current_file[5];
int current_file_i = 0;
int main(int argc, char * * argv)
{
errno = 0;
verificarArgumentos(argc,argv);
/* clear_line mallocs the current string buffer */
clear_line_string();
//yydebug = 1;
current_file[0] = argv[1];
yyparse();
return 1;
}
/* verifica los argumentos pasados por linea de
* comando al programa, devuelve:
* 1=true
* 0=false */
int verificarArgumentos(int argc, char * * argv)
{
if(argc==2)
{
char* nombre_archivo = argv[1];
yyin = fopen(nombre_archivo, "r");
if(yyin)
return 1;
else
printf("\n Archivo `%s` no encontrado.\n\n",argv[1]);
exit(1);
}
print_help();
exit(1);
return 0;
}
/* print a stdout si los argumentos son incorrectos */
void print_help()
{
printf(
"\n Porfavor llamar al programa con los argumentos correctos.\n\n bison <nombre-del-archivo>\n\n <nombre-del-archivo> Archivo fuente C del cual desea verificar \n errores lexicos y sintácticos.\n\n");
return;
}