mirror of
https://github.com/Kugelschieber/vk-experiments.git
synced 2026-01-18 14:50:27 +00:00
10 lines
124 B
C
10 lines
124 B
C
#include "util.h"
|
|
|
|
int min(int a, int b) {
|
|
return a > b ? b : a;
|
|
}
|
|
|
|
int max(int a, int b) {
|
|
return a > b ? a : b;
|
|
}
|