-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmax.c
57 lines (49 loc) · 1.66 KB
/
max.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* max.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: lgasc <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/01/10 17:14:34 by lgasc #+# #+# */
/* Updated: 2024/03/11 20:30:27 by lgasc ### ########.fr */
/* */
/* ************************************************************************** */
#include <stddef.h>
#include "max.h"
__attribute__ ((warn_unused_result))
size_t ft_zmax(const size_t a, const size_t b)
{
if (a > b)
return (a);
return (b);
}
//unsigned ft_umaxo()
//{
//}
//unsigned long ft_ulmaxo(void)
//{
// return (0);
//}
//size_t ft_zmaxo(const size_t array[const], const size_t length)
//{
// size_t i;
//
// i = 0;
//
//}
///@returns the offset of one of the maximum values of the `array`
__attribute__ ((nonnull))
t_max_result ft_try_zmaxo(const size_t array[const], const size_t length)
{
size_t i;
size_t maximum_offset;
if (length == 0)
return ((t_max_result){.code = Max_NoElement});
i = 0;
maximum_offset = 0;
while (++i < length)
if (array[i] > array[maximum_offset])
maximum_offset = i;
return ((t_max_result){.code = Max_Ok, .ok = maximum_offset});
}