config.h
34 lines
| 705 B
| text/x-c
|
CLexer
|
r96 | /* | ||
* | ||||
* NMEA library | ||||
* URL: http://nmea.sourceforge.net | ||||
* Author: Tim (xtimor@gmail.com) | ||||
* Licence: http://www.gnu.org/licenses/lgpl.html | ||||
* $Id: config.h 17 2008-03-11 11:56:11Z xtimor $ | ||||
* | ||||
*/ | ||||
#ifndef __NMEA_CONFIG_H__ | ||||
#define __NMEA_CONFIG_H__ | ||||
#define NMEA_VERSION ("0.5.3") | ||||
#define NMEA_VERSION_MAJOR (0) | ||||
#define NMEA_VERSION_MINOR (5) | ||||
#define NMEA_VERSION_PATCH (3) | ||||
#define NMEA_CONVSTR_BUF (256) | ||||
#define NMEA_TIMEPARSE_BUF (256) | ||||
#define NMEA_UNI | ||||
#define NMEA_POSIX(x) x | ||||
#define NMEA_INLINE inline | ||||
#if !defined(NDEBUG) && !defined(NMEA_CE) | ||||
# include <assert.h> | ||||
# define NMEA_ASSERT(x) assert(x) | ||||
#else | ||||
# define NMEA_ASSERT(x) | ||||
#endif | ||||
#endif /* __NMEA_CONFIG_H__ */ | ||||