25static inline int max(
int a,
int b)
30static inline int min(
int a,
int b)
36#define MAX(x,y) (max(x,y))
39#define MIN(x,y) (min(x,y))
42#define ABS(x) ((x)<0?-(x):(x))
51#define Isascii(c) isascii((int)(unsigned char)(c))
52#define Isdigit(c) isdigit((int)(unsigned char)(c))
53#define Islower(c) islower((int)(unsigned char)(c))
54#define Isupper(c) isupper((int)(unsigned char)(c))
55#define Tolower(c) tolower((int)(unsigned char)(c))
56#define Toupper(c) toupper((int)(unsigned char)(c))
Info and control for each X Screen we control.
Info and control for every X Window we take over.
void safe_strncpy(char *dest, const char *src, size_t size)
void GetColor(int kind, Pixel *what, const char *name)
Get info from the server about a given color.
static int min(int a, int b)
char * ExpandFilename(const char *name)
bool UpdateFont(MyFont *font, int height)
Try adjusting a font's height.
void GetShadeColors(ColorPair *cp)
Try and create a 'shaded' version of a color for prettier UI.
void RescueWindows(void)
Backend for f.rescuewindows.
static int max(int a, int b)
char * ExpandFilePath(char *path)
void DebugTrace(char *file)
Backend for f.trace.
void CreateFonts(ScreenInfo *scr)
Load up our various defined fonts.