Já bota. (mal... mas bota)
[funnysort.git] / helper.h
blobdb1f1ba2e08b7848a705909597d8679a7aad1178
1 #ifndef HELPER_H
2 #define HELPER_H
4 typedef enum {A=0, VAZIO, ORDENADOR} item_t;
6 void tab_criar(unsigned int altura, unsigned int largura);
7 void tab_libertar(void);
8 void tab_ler(unsigned int x, unsigned int y, item_t *i);
9 void tab_escrever(unsigned int x, unsigned int y, item_t i);
10 void tab_imprimir(void);
12 #endif /* HELPER_H */