summaryrefslogtreecommitdiff
path: root/zp/source/any/mth/divmod.cc
blob: 48913f381e2a62957b6f48a611c18e1dacef2254 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/*
	Copyright 2022-2023 Gabriel Jensen.
	This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
	If a copy of the MPL was not distributed with this file, You can obtain one at <https://mozilla.org/MPL/2.0>.
*/

#include <zp/mth>

extern "C" {
	zp_nothw auto zp_divmodsc(char signed const num,char signed const den) -> ::divmodressc {return ::zp::divmod(num,den).cpair();}
	zp_nothw auto zp_divmods( short       const num,short       const den) -> ::divmodress  {return ::zp::divmod(num,den).cpair();}
	zp_nothw auto zp_divmodi( int         const num,int         const den) -> ::divmodresi  {return ::zp::divmod(num,den).cpair();}
	zp_nothw auto zp_divmodl( int long        const num,int long        const den) -> ::divmodresl  {return ::zp::divmod(num,den).cpair();}
	zp_nothw auto zp_divmodll(int long long   const num,int long long   const den) -> ::divmodresll {return ::zp::divmod(num,den).cpair();}
}