-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathturing.h
44 lines (34 loc) · 1.62 KB
/
turing.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
38
39
40
41
42
43
44
/*
Copyright (C) Jonathan Druart
This Program is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; version 2
of the License.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file licence.txt. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.
*/
#ifndef _TURING
#define _TURING
// Initialisation de la bande avec des 'blancs'
void Init(char*);
// Test de la bande, vérifie si la chaine passée en paramètre
// $ est bien conforme à l'alphabet utilisé dans le fichier des instructions
// $ ne contient pas de caractères spéciaux '<' ou '>'
int TestBande(char* chaine);
// Affichage de la bande en centrant par rapport à l'indice passé en paramètre
void AfficherBande(int);
// Mise à jour de la bande
// $ On réaffiche la bande par rapport à la position courante
// $ On attend le prochain appuis sur la touche 'Entrée' pour passer à l'instruction suivante
void MajBande(int);
// Décalage de la tête de lecture vers la gauche (0) ou vers la droite (1)
void Decalage(int, int);
// Traitement de l'instruction en fonction de l'état et du symbole passés en paramètre
void TraiterInstr(char*, char);
#endif