sort example not using printf
#include #include #include #include "functionPointer.h" #define SIZE(array) sizeof(array) / sizeof(int) bool descending(int x, int y) { return (x y); } void swap(int *x, int *y) { int temp; temp = *x; *x = *y; *y = temp; } void ft_putchar(char *str) { while (*str) write(1, str++, 1); } int ft_len(char *str) { int i; i = 0; while (str[i]) i++; re..