This repository has been archived on 2025-07-20. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
ossp/akpa_util.c
2023-11-11 12:52:09 +00:00

13 lines
No EOL
182 B
C

//
// Created by akp on 06/10/23.
//
#pragma once
int akpa_numcmp(int a, int b) {
if (a < b) {
return -1;
} else if (a > b) {
return 1;
}
return 0;
}