mirror of
https://github.com/0intro/wmii
synced 2025-02-18 15:24:23 +03:00
15 lines
126 B
C
15 lines
126 B
C
|
|
int
|
|
max(int a, int b) {
|
|
if(a > b)
|
|
return a;
|
|
return b;
|
|
}
|
|
|
|
char *
|
|
str_nil(char *s) {
|
|
if(s)
|
|
return s;
|
|
return "<nil>";
|
|
}
|