Skip to content

Instantly share code, notes, and snippets.

@xv
Created June 20, 2025 05:51
Show Gist options
  • Save xv/b1f4247c49eee5fcb87b55ed18637a96 to your computer and use it in GitHub Desktop.
Save xv/b1f4247c49eee5fcb87b55ed18637a96 to your computer and use it in GitHub Desktop.
#define MIN(A, B) ((A) < (B) ? (A) : (B))
#define MAX(A, B) ((A) > (B) ? (A) : (B))
#define CLAMP(N, LO, HI) (MIN(MAX((LO), (N)), (HI)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment