-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathft_split.c
More file actions
55 lines (50 loc) · 1.77 KB
/
Copy pathft_split.c
File metadata and controls
55 lines (50 loc) · 1.77 KB
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
/* ************************************************************************** */
/* */
/* /#/ |#/|#| */
/* ft_split.c /#/ |/ |#| */
/* /#/ /#/ */
/* By: nephco <nephco@student.42.fr> /#/ /#/ */
/* /#/____ |#| /| */
/* Created: 2026/06/17 23:58:55 by nephco |#######| |#|/#| */
/* Updated: 2026/08/26 23:59:40 by nephco |#| NEPH */
/* */
/* ************************************************************************** */
#include <stdlib.h>
#include <stddef.h>
// ========================================================================== //
static char *wordcut(char const *word, char cuterie)
{
//
}
static size_t *memory(char const *chain)
{
//
//malloc
//
//return
}
char **ft_split(char const *s, char c)
{
char *result;
// memory s
// call wordcut >> memory
// free
// s the string to be split
// c the delimiter caracter
char result;
}
// ========================================================================== //
// ========================================================================== //
// ========================================================================== //
char display(char const *playS, char playC)
{
split (playS, playC)
free()
printf
}
int main(int argc, char **argv)
{
// make code:
return(0);
}
// ========================================================================== //