Twilight Princess
Decompilation of The Legend of Zelda: Twilight Princess
Loading...
Searching...
No Matches
arith.h
Go to the documentation of this file.
1#ifndef _MSL_COMMON_ARITH_H
2#define _MSL_COMMON_ARITH_H
3
4#ifdef __cplusplus
5extern "C" {
6#endif
7
8typedef struct {
9 int quot; /* quotient */
10 int rem; /* remainder */
11} div_t;
12
14
15#ifdef __cplusplus
16}
17#endif
18
19#endif /* _MSL_COMMON_ARITH_H */
div_t div(int numerator, int denominator)
Definition arith.c:12
T cLib_calcTimer(T *value)
Definition c_lib.h:74
Definition arith.h:8
int quot
Definition arith.h:9
int rem
Definition arith.h:10