Skip to content

Commit

Permalink
Merge pull request #25 from mendes-jv/detached4
Browse files Browse the repository at this point in the history
Correct newline placement in code files
  • Loading branch information
mendes-jv committed Feb 9, 2024
2 parents 75a3b8a + 238e3a8 commit e0dcf2b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion sources/ft_operate.c
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@ int ft_operate(int nbr1, int nbr2, char operator)
if (nbr1 >= nbr2)
return (nbr1);
return (nbr2);
}
}
2 changes: 1 addition & 1 deletion sources/ft_swap.c
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ void ft_swap(int *nbr1, int *nbr2)
*nbr1 ^= *nbr2;
*nbr2 ^= *nbr1;
*nbr1 ^= *nbr2;
}
}

0 comments on commit e0dcf2b

Please sign in to comment.