libi3: Implement Pango rendering
This commit is contained in:
committed by
Quentin Glidic
parent
f06161b58a
commit
6ff3f7abad
@ -11,7 +11,9 @@
|
||||
#include "queue.h"
|
||||
|
||||
/* Get the maximum/minimum of x and y */
|
||||
#undef MAX
|
||||
#define MAX(x,y) ((x) > (y) ? (x) : (y))
|
||||
#undef MIN
|
||||
#define MIN(x,y) ((x) < (y) ? (x) : (y))
|
||||
|
||||
/* Securely free p */
|
||||
|
Reference in New Issue
Block a user