-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbrainfuck_main.c
41 lines (35 loc) · 1.07 KB
/
brainfuck_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
#include <assert.h>
#include <stdlib.h>
#include <stdint.h>
#include <stdio.h>
#include <string.h>
#include "brainfuck_helper.h"
/**
* @brief Point d'entrée de notre interpréteur Brainfuck.
*
* @param argc le nombre d'arguments passés sur la ligne de commande
* @param argv les arguments passés sur la ligne de commande
* @return 0 si tout s'est bien passé et 1 sinon
*/
int main(int argc, char **argv) {
if (argc != 2) {
printf("Vous devez passer le nom du fichier Brainfuck à interpréter\n");
return 1;
}
char* input_prog = get_input_prog(argv[1]);
char* ip = input_prog;
if (ip == NULL) {
printf("Le fichier Brainfuck passé en paramètre n'existe pas dans le répertoire courant\n");
return 1;
}
void* loops = build_loops(ip);
uint8_t* data_array = calloc(DATA_ARRAY_SIZE, sizeof(uint8_t));
uint8_t* dp = data_array;
while (*ip != '\0') {
execute_instruction(&ip, &dp, loops);
}
free(data_array);
free_loops(loops);
free_input_prog(input_prog);
return EXIT_SUCCESS;
}