leapc
Loading...
Searching...
No Matches
quo_mod.h
Go to the documentation of this file.
1/* SPDX-License-Identifier: MIT */
9#ifndef __QUO_MOD_H__
10#define __QUO_MOD_H__
11
22struct quo_mod {
26 int quo;
30 int mod;
31};
32
55struct quo_mod quo_mod(int x, int y);
56
57#endif /* __QUO_MOD_H__ */
Quotient and remainder in integer space.
Definition quo_mod.h:22
int mod
Integer modulus.
Definition quo_mod.h:30
int quo
Integer quotient.
Definition quo_mod.h:26