php-internal-docs
8.4.8
Unofficial docs for php/php-src
Loading...
Searching...
No Matches
gd_intern.h
Go to the documentation of this file.
1
#ifndef GD_INTERN_H
2
#define GD_INTERN_H
3
#ifndef MIN
4
#define MIN(a,b) ((a)<(b)?(a):(b))
5
#endif
6
#define MIN3(a,b,c) ((a)<(b)?(MIN(a,c)):(MIN(b,c)))
7
#ifndef MAX
8
#define MAX(a,b) ((a)<(b)?(b):(a))
9
#endif
10
#define MAX3(a,b,c) ((a)<(b)?(MAX(b,c)):(MAX(a,c)))
11
#define CLAMP(x, low, high) (((x) > (high)) ? (high) : (((x) < (low)) ? (low) : (x)))
12
13
#endif
14
ext
gd
libgd
gd_intern.h
Generated on Sat Aug 23 2025 01:46:08 for php-internal-docs by
1.13.2