main.c
1 2 #include <stdio.h> 3 4 int *from_chars_to_ints(char *str); 5 int *ft_incrarr(int *list, int n); 6 7 int main(int argc, char **argv) { 8 int *numbers; 9 int n; 10 11 ft_incrarr(numbers, n); 12 } 13 14 int *from_chars_to_ints(char *str) { 15 int *numbers; 16 return (numbers); 17 } 18 19 int *ft_incrarr(int *list, int n) { 20 int i; 21 while (list[i]) { 22 list[i] += n; 23 i++; 24 } 25 return (list); 26 }