summaryrefslogtreecommitdiff
path: root/src/constants.h
blob: 5891d7af9b703199f5177cbf1cfde303d27486a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef CONSTANTS_H_
#define CONSTANTS_H_

#define APP_NAME "Hinata"
#define MAX_VALUE 100

#define CEIL_DIV(a, b) (((a) + (b)-1) / (b))
#define MAX(x, y) ((x) > (y)) ? (x) : (y)

#ifdef _WIN32
#define SPLITTER_CHAR '\\'
#define SPLITTER_STR "\\"
#else
#define SPLITTER_CHAR '/'
#define SPLITTER_STR "/"
#endif

#endif