minor: Refactor C utility macros

This commit is contained in:
Christian W. Zuckschwerdt 2024-03-06 20:14:49 +01:00
parent 2a1bfda929
commit fe85bd111f
8 changed files with 29 additions and 13 deletions

View file

@ -14,14 +14,6 @@
#include <stdint.h>
// Helper macros, collides with MSVC's stdlib.h unless NOMINMAX is used
#ifndef MAX
#define MAX(a,b) ((a) > (b) ? (a) : (b))
#endif
#ifndef MIN
#define MIN(a,b) ((a) < (b) ? (a) : (b))
#endif
/// Reverse (reflect) the bits in an 32 bit byte.
///
/// @param x input byte

23
include/c_util.h Normal file
View file

@ -0,0 +1,23 @@
/** @file
General C language utility macro.
Copyright (C) 2018 Christian W. Zuckschwerdt <zany@triq.net>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
*/
#ifndef INCLUDE_C_UTIL_H_
#define INCLUDE_C_UTIL_H_
// Helper macros, collides with MSVC's stdlib.h unless NOMINMAX is used
#ifndef MAX
#define MAX(a,b) ((a) > (b) ? (a) : (b))
#endif
#ifndef MIN
#define MIN(a,b) ((a) < (b) ? (a) : (b))
#endif
#endif /* INCLUDE_C_UTIL_H_ */

View file

@ -12,5 +12,6 @@
#include "data.h"
#include "bit_util.h"
#include "decoder_util.h"
#include "c_util.h"
#endif /* INCLUDE_DECODER_H_ */

View file

@ -19,7 +19,7 @@
#include "data.h"
#include "list.h"
#include "optparse.h"
#include "util.h" // for MIN()
#include "c_util.h" // for MIN()
#include "fileformat.h"
#include "fatal.h"

View file

@ -11,7 +11,7 @@
#include "pulse_analyzer.h"
#include "pulse_slicer.h"
#include "bit_util.h" // for MIN(), MAX()
#include "c_util.h" // for MIN(), MAX()
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

View file

@ -14,7 +14,7 @@
#include "pulse_detect_fsk.h"
#include "pulse_data.h"
#include "baseband.h"
#include "bit_util.h" // for MIN(), MAX()
#include "c_util.h" // for MIN(), MAX()
#include "logger.h"
#include "fatal.h"
#include <stdio.h>

View file

@ -12,7 +12,7 @@
*/
#include "pulse_detect_fsk.h"
#include "bit_util.h" // for MIN(), MAX()
#include "c_util.h" // for MIN(), MAX()
#include <limits.h>
#include <stdio.h>
#include <stdlib.h>

View file

@ -14,7 +14,7 @@
#include "pulse_slicer.h"
#include "pulse_data.h"
#include "bitbuffer.h"
#include "bit_util.h" // for MIN()
#include "c_util.h" // for MIN()
#include "logger.h"
#include "decoder_util.h" // TODO: this should be refactored
#include <stdio.h>