├── .gitignore ├── 0introducao.c ├── 1desenha_limpa.c ├── 2inicia_finaliza.c ├── 3imagem_xpm.c ├── 4hooks.c ├── 5ocultos.c ├── 6testes.c ├── CONTRIBUTING.md ├── FUNCOES.md ├── LICENSE ├── README.md ├── fluxograma.png └── pikachu.xpm /.gitignore: -------------------------------------------------------------------------------- 1 | a.out 2 | *.gch 3 | *.o 4 | -------------------------------------------------------------------------------- /0introducao.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyvdl/MiniLibX_my_docs/HEAD/0introducao.c -------------------------------------------------------------------------------- /1desenha_limpa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyvdl/MiniLibX_my_docs/HEAD/1desenha_limpa.c -------------------------------------------------------------------------------- /2inicia_finaliza.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyvdl/MiniLibX_my_docs/HEAD/2inicia_finaliza.c -------------------------------------------------------------------------------- /3imagem_xpm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyvdl/MiniLibX_my_docs/HEAD/3imagem_xpm.c -------------------------------------------------------------------------------- /4hooks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyvdl/MiniLibX_my_docs/HEAD/4hooks.c -------------------------------------------------------------------------------- /5ocultos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyvdl/MiniLibX_my_docs/HEAD/5ocultos.c -------------------------------------------------------------------------------- /6testes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyvdl/MiniLibX_my_docs/HEAD/6testes.c -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyvdl/MiniLibX_my_docs/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /FUNCOES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyvdl/MiniLibX_my_docs/HEAD/FUNCOES.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyvdl/MiniLibX_my_docs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyvdl/MiniLibX_my_docs/HEAD/README.md -------------------------------------------------------------------------------- /fluxograma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyvdl/MiniLibX_my_docs/HEAD/fluxograma.png -------------------------------------------------------------------------------- /pikachu.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyvdl/MiniLibX_my_docs/HEAD/pikachu.xpm --------------------------------------------------------------------------------