Skip to content

Commit

Permalink
modified tabdel
Browse files Browse the repository at this point in the history
  • Loading branch information
Anaelle LECLABART committed Jan 4, 2019
1 parent 0a02c8b commit 13bcd02
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# By: anaiel <[email protected]> +#+ +:+ +#+ #
# +#+#+#+#+#+ +#+ #
# Created: 2018/11/06 17:19:55 by anleclab #+# #+# #
# Updated: 2019/01/04 11:19:46 by anleclab ### ########.fr #
# Updated: 2019/01/04 14:19:14 by anleclab ### ########.fr #
# #
# **************************************************************************** #

Expand Down
4 changes: 2 additions & 2 deletions libft.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
/* By: anaiel <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2018/11/06 17:19:32 by anleclab #+# #+# */
/* Updated: 2019/01/04 11:19:34 by anleclab ### ########.fr */
/* Updated: 2019/01/04 15:05:20 by anleclab ### ########.fr */
/* */
/* ************************************************************************** */

Expand Down Expand Up @@ -96,6 +96,6 @@ char *ft_itoa_base(int n, int base);
char *ft_litoa(long int nb);
char *ft_llitoa(long long int nb);
long double ft_ldouble_power(long double n, int pow);
void ft_tabdel(char **tab);
void ft_tabdel(void **tab);

#endif
4 changes: 2 additions & 2 deletions src/ft_tabdel.c
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@
/* By: anleclab <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2019/01/04 11:17:44 by anleclab #+# #+# */
/* Updated: 2019/01/04 11:19:10 by anleclab ### ########.fr */
/* Updated: 2019/01/04 15:04:53 by anleclab ### ########.fr */
/* */
/* ************************************************************************** */

#include <stdlib.h>

void ft_tabdel(char **tab)
void ft_tabdel(void **tab)
{
int i;

Expand Down

0 comments on commit 13bcd02

Please sign in to comment.