/** \dir UTIL * * \brief Utility Software * * This directory/namespace contains miscellaneous utility functions. * */ /** \file * \brief This file defines the interface to the UTIL package used by this software. * * This file should be included by any file outside the UTIL package wishing to make use * of any of the UTIL functionality. * * \note As always, and should be included before this file. */ #ifndef UTIL_H #define UTIL_H #ifdef __cplusplus extern "C" { #endif /* Preprocessor and Type Definitions */ #define STR_HELPER(x) #x #define STR(x) STR_HELPER(x) /* Include Files */ #include "UTIL_CircularBuffer.h" /* Public Variables */ /* Public Functions */ #ifdef __cplusplus } #endif #endif // UTIL_H