repo.or.cz
/
wine.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fixes char array in structure dumping.
[wine.git]
/
include
/
minmax.h
blob
0367857f46adbb9e528a12acc75e399ed35fbaab
1
/*
2
* min/max macros
3
*
4
* Copyright 2001 Francois Gouget
5
*/
6
7
#ifndef __WINE_MINMAX_H
8
#define __WINE_MINMAX_H
9
10
#ifndef max
11
#define max(a,b) (((a) > (b)) ? (a) : (b))
12
#endif
13
#ifndef min
14
#define min(a,b) (((a) < (b)) ? (a) : (b))
15
#endif
16
17
#endif
/* __WINE_MINMAX_H */