-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Anaelle LECLABART
committed
Jan 4, 2019
1 parent
0a02c8b
commit 13bcd02
Showing
3 changed files
with
5 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 # | ||
# # | ||
# **************************************************************************** # | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 */ | ||
/* */ | ||
/* ************************************************************************** */ | ||
|
||
|
@@ -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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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; | ||
|
||
|