MCPcopy Create free account
hub / github.com/OpenSIPS/opensips / gcd

Function gcd

modules/clusterer/clusterer_mod.c:308–317  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

306};
307
308static inline int gcd(int a, int b) {
309 int t;
310
311 while(b) {
312 t = a;
313 a = b;
314 b = t % b;
315 }
316 return a;
317}
318
319#define PARSE_PROP(col_name, _col_idx, _type) \
320do { \

Callers 1

mod_initFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected