-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.c
86 lines (78 loc) · 1.97 KB
/
main.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* main.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: aihya <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2021/11/30 15:17:39 by aihya #+# #+# */
/* Updated: 2021/12/07 18:58:48 by aihya ### ########.fr */
/* */
/* ************************************************************************** */
#include "ft_malloc.h"
int main()
{
char *str;
int i;
str = calloc(100, 10);
str = reallocf(str, 0);
printf("%p\n", str);
// i = 0;
// while (i < 500)
// {
// if (str[i] == 0)
// printf(".");
// else
// printf("-");
// i++;
// }
// printf("\n");
// show_all();
// hexdump();
// i = 0;
// while (i < 500)
// {
// // str1[i] = (char *)malloc(10);
// str[i] = (char *)malloc(i+1);
// // show_all();
// // int j = 0;
// // while (j < i+2)
// // {
// // str1[i][j] = 42;
// // j++;
// // }
// // str1[i][j] = 0;
// // printf("%s\n", str1[i]);
// i++;
// }
// ft_memset(str[0], 1, 2);
// realloc(str[1], 100);
// malloc(10);
// malloc(123);
// i = 0;
// while (i < 1000)
// {
// if ((i+1) % 2)
// free(str[i]);
// i++;
// }
// malloc(1024);
// i = 0;
// while (i < 1024)
// {
// if (i % 2)
// free(str1[i]);
// i++;
// }
// show_mem();
// show_alloc_mem();
// i = 0;
// while (i < 10)
// {
// free(str1[i]);
// i++;
// }
// show_alloc_mem();
return (0);
}
//TODO: Add fix_health for free and realloc