Twilight Princess
Decompilation of The Legend of Zelda: Twilight Princess
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Modules Pages
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
13div_t div(int numerator, int denominator);
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
Definition arith.h:8
int quot
Definition arith.h:9
int rem
Definition arith.h:10