mirror of
https://git.btclock.dev/btclock/btclock_v3
synced 2025-04-23 01:01:21 +00:00
7 lines
79 B
C++
7 lines
79 B
C++
![]() |
#include "utils.hpp"
|
||
|
|
||
|
int modulo(int x, int N)
|
||
|
{
|
||
|
return (x % N + N) % N;
|
||
|
}
|