MEDIUM: config: add DeviceAtlas global keywords

This diff is for the DeviceAtlas convertor.

This patch adds the following converters :
  deviceatlas-json-file
  deviceatlas-log-level
  deviceatlas-property-separator

First, the configuration keywords handling (only the log
level configuration part does not end the haproxy process
if it is wrongly set, it fallbacks to the default level).
Furthermore, init, deinit phases and the API lookup phase,
the da_haproxy function which is fed by the input provided
and set all necessary properties chosen via the configuration
to the output, separated by the separator.
diff --git a/include/import/da.h b/include/import/da.h
new file mode 100644
index 0000000..d990188
--- /dev/null
+++ b/include/import/da.h
@@ -0,0 +1,13 @@
+#ifndef MOBI_DA_DAC_HAPROXY_H
+#define MOBI_DA_DAC_HAPROXY_H
+#ifdef USE_DEVICEATLAS
+
+#include <types/global.h>
+#include <dac.h>
+
+void da_register_cfgkeywords(void);
+int init_deviceatlas(void);
+void deinit_deviceatlas(void);
+int da_haproxy(const struct arg *, struct sample *, void *);
+#endif
+#endif