aboutsummaryrefslogtreecommitdiffstats
path: root/libgamma_const_of_connector_type.c
diff options
context:
space:
mode:
Diffstat (limited to 'libgamma_const_of_connector_type.c')
-rw-r--r--libgamma_const_of_connector_type.c25
1 files changed, 25 insertions, 0 deletions
diff --git a/libgamma_const_of_connector_type.c b/libgamma_const_of_connector_type.c
new file mode 100644
index 0000000..a006b88
--- /dev/null
+++ b/libgamma_const_of_connector_type.c
@@ -0,0 +1,25 @@
+/* See LICENSE file for copyright and license details. */
+#include "common.h"
+
+
+/**
+ * Get the name of the constant for a connector
+ * type, for example "LIBGAMMA_CONNECTOR_TYPE_VGA"
+ * for `LIBGAMMA_CONNECTOR_TYPE_VGA`
+ *
+ * @param connector The connector type
+ * @return The name of the constant for connector type,
+ * `NULL` if not recognised (errno is not changed)
+ */
+const char *
+libgamma_const_of_connector_type(int connector)
+{
+ switch (connector) {
+#define X(CONST, NAME)\
+ case CONST: return #CONST;
+ LIST_CONNECTOR_TYPES(X)
+#undef X
+ default:
+ return NULL;
+ }
+}