diff options
author | Robin Krahl <me@robin-krahl.de> | 2016-06-06 17:41:19 +0200 |
---|---|---|
committer | Robin Krahl <me@robin-krahl.de> | 2016-06-06 17:41:19 +0200 |
commit | 1f0c7d966fdb31f62cf40eac9c39ae2b9e643366 (patch) | |
tree | 56e2975e32a74587e4e04274eab45c545f252b16 | |
parent | 47d6867cc86d5239fea690565abe84c526edaa5b (diff) | |
download | dbfp-1f0c7d966fdb31f62cf40eac9c39ae2b9e643366.tar.gz dbfp-1f0c7d966fdb31f62cf40eac9c39ae2b9e643366.tar.bz2 |
dbfp: add version information to dbfp.h
-rw-r--r-- | dbfp.h | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -1,7 +1,7 @@ /* * Copyright (C) 2016 Robin Krahl <robin.krahl@ireas.org> * - * dbfp.h + * dbfp.h -- provides access to the timetable API of the Deutsche Bahn */ #ifndef DBFP_H_ @@ -11,6 +11,10 @@ #include <stddef.h> #include <time.h> +#define DBFP_VERSION_MAJOR 0 +#define DBFP_VERSION_MINOR 1 +#define DBFP_VERSION_PATCH 0 + enum dbfp_error { DBFP_ERROR_CURL = -1, DBFP_ERROR_FORMAT = -2, |