Purple  0.1
Standard Language Specification
Macros
misc.h File Reference

Miscellaneous utility functions that don't fit anywhere else. More...

#include <math.h>
#include <stdio.h>
#include <string.h>
Include dependency graph for misc.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Macros

#define MIN(x, y)   (x < y ? x : y)
 
#define MAX(x, y)   (x > y ? x : y)
 

Detailed Description

Miscellaneous utility functions that don't fit anywhere else.

Author
Charles Averill
Date
07-Jun-2023

Macro Definition Documentation

◆ MAX

#define MAX (   x,
 
)    (x > y ? x : y)

◆ MIN

#define MIN (   x,
 
)    (x < y ? x : y)