Last active
November 12, 2024 11:17
-
-
Save mofosyne/c6e3e179d4226b0b82cb03a399e68fcb to your computer and use it in GitHub Desktop.
Bounded And Clamped Value Macros (Useful for guarding against invalid integer ranges)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/tcc -run | |
// Bounded Value Macros (Useful for guarding against invalid integer ranges) | |
#define clamp_upper(value, max) ((value) < (max) ? (value) : (max)) | |
#define clamp_lower(value, min) ((value) > (min) ? (value) : (min)) | |
#define clamp_range(value, min, max) clamp_lower(min, clamp_upper(value, max)) | |
#define is_above_bound(value, max) ((value) > (max)) | |
#define is_below_bound(value, min) ((value) < (min)) | |
#define is_within_bound(value, min, max) ((value) >= (min) && (value) <= (max)) | |
#define is_out_of_bound(value, min, max) ((value) < (min) || (value) > (max)) | |
#include <stdio.h> | |
int main(void) { | |
const int min = -2; | |
const int max = 2; | |
printf("# Bounded/Clamped Value Macros Outputs"); | |
printf("\n"); | |
printf("* min = %d\n", min); | |
printf("* max = %d\n", max); | |
printf("\n"); | |
printf("## Clamped Value Macros Outputs\n"); | |
printf("| i | clamp_upper | clamp_lower | clamp_range |\n"); | |
printf("|:---:|:---:|:---:|:---:|\n"); | |
for (int i = -5; i <= 5; i++) | |
{ | |
printf("| %2d | %2d | %2d | %2d |\n", i, clamp_upper(i, max), clamp_lower(i, min), clamp_range(i, min, max)); | |
} | |
printf("\n"); | |
printf("## Bounded Value Macros Outputs\n"); | |
printf("| i | is_below_bound | is_above_bound | is_within_bound | is_out_of_bound |\n"); | |
printf("|:---:|:---:|:---:|:---:|:---:|\n"); | |
for (int i = -5; i <= 5; i++) | |
{ | |
printf("| %2d | %s | %s | %s | %s |\n", i, is_below_bound(i, min) ? "**true**":"false", is_above_bound(i, max) ? "**true**":"false", is_within_bound(i, min, max) ? "**true**":"false", is_out_of_bound(i, min, max) ? "**true**":"false"); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Bounded/Clamped Value Macros Outputs
Clamped Value Macros Outputs
Bounded Value Macros Outputs