-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathft_split.c
More file actions
41 lines (34 loc) · 1.46 KB
/
Copy pathft_split.c
File metadata and controls
41 lines (34 loc) · 1.46 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
/* ************************************************************************** */
/* */
/* /#/ |#/|#| */
/* ft_split.c /#/ |/ |#| */
/* /#/ /#/ */
/* By: nephco <nephco@student.42.fr> /#/ /#/ */
/* /#/____ |#| /| */
/* Created: 2026/06/17 23:58:55 by nephco |#######| |#|/#| */
/* Updated: 2026/08/14 23:55:19 by nephco |#| NEPH */
/* */
/* ************************************************************************** */
void nephallocation()
{
}
char **ft_split(char const *s, char c);
{
// 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)
{
return(0);
}
// ========================================================================== //