mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-16 06:05:58 -06:00
11 lines
149 B
C++
11 lines
149 B
C++
#include <Core/Core.h>
|
|
|
|
using namespace Upp;
|
|
|
|
int IScale(int x, int y, int z)
|
|
{
|
|
int64 res = x;
|
|
res *= y;
|
|
res /= z;
|
|
return (int)res;
|
|
}
|