Functions | |
void | ft_swap_char_no_temp (char *a, char *b) |
Works similarly as ft_swap_char but doens't use temporary variable SHOULD NOT BE USED IF a and b points at the same adress. | |
void | ft_swap_int_no_temp (int *a, int *b) |
Works similarly as ft_swap_int but doens't use temporary variable SHOULD NOT BE USED IF a and b points at the same adress. | |