Auto stash before merge of "master" and "origin/master" + CLEANING

This commit is contained in:
Manzovince
2019-05-20 13:48:14 +02:00
parent f4b1da414c
commit 2dbd5b7320
4 changed files with 26 additions and 40 deletions

View File

@@ -6,7 +6,7 @@
/* By: vmanzoni <vmanzoni@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2019/03/01 13:34:46 by vmanzoni #+# #+# */
/* Updated: 2019/05/17 18:37:47 by hulamy ### ########.fr */
/* Updated: 2019/05/20 13:43:34 by vmanzoni ### ########.fr */
/* */
/* ************************************************************************** */
@@ -14,10 +14,9 @@
# define FILLIT_H
#include <stdlib.h>
#include <unistd.h> // for system call write
#include <fcntl.h> // for system call open
#include <unistd.h>
#include <fcntl.h>
#include <stdbool.h>
#include <stdio.h> // for printf (DELETE BEFORE EVAL)
#include "libft/includes/libft.h"
@@ -76,8 +75,8 @@ int check_tetri_errors(char *tetri);
int check_tetri_errors_proxy(char *tetri);
int add_to_list(char *square, t_fillist **list, char letter);
void fill_list(char line[], t_fillist *list);
void print_bits(unsigned int bits, int size); //TO DELETE BEFORE EVAL
void print_tetri(unsigned int bits, int size); //TO DELETE BEFORE EVAL
void print_bits(unsigned int bits, int size);
void print_tetri(unsigned int bits, int size);
int search_map(t_fillist *list);
void print_map(unsigned int *tab, int width, int height, char letter);
void print_final_map(t_fillist *list, int size, int flag);