diff options
-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, |