Remove tab for norminette

This commit is contained in:
Timo Schmidt 2023-03-24 00:47:54 +01:00
parent 86b4fdf37b
commit daeee8b218
1 changed files with 2 additions and 2 deletions

View File

@ -6,7 +6,7 @@
/* By: tischmid <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/03/19 11:27:43 by tischmid #+# #+# */
/* Updated: 2023/03/19 11:48:58 by tischmid ### ########.fr */
/* Updated: 2023/03/24 00:34:07 by tischmid ### ########.fr */
/* */
/* ************************************************************************** */
@ -29,7 +29,7 @@ char *ft_strcapitalize(char *str)
{
inside_word = 1;
if (is_alpha)
str[i] = str[i] & 95;
str[i] = str[i] & 95;
}
else if (inside_word && (is_alpha || is_numeric))
str[i] = str[i] | 32;