-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmake_and_check_map_utils.c
37 lines (32 loc) · 1.16 KB
/
make_and_check_map_utils.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* make_and_check_map_utils.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: mkorpela <mkorpela@student.hive.fi> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/02/13 13:54:39 by mkorpela #+# #+# */
/* Updated: 2024/03/13 09:03:28 by mkorpela ### ########.fr */
/* */
/* ************************************************************************** */
#include "so_long.h"
int strlen_until_newline_or_null_terminator(const char *s)
{
int i;
i = 0;
while (s[i] != '\0' && s[i] != 10)
{
i++;
}
return (i);
}
int calc_number_of_rows(char **array_of_map_rows)
{
int i;
i = 0;
while (array_of_map_rows[i])
{
i++;
}
return (i);
}