aboutsummaryrefslogtreecommitdiffstats
path: root/src/output.h
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2016-07-11 00:03:48 +0200
committerMattias Andrée <maandree@kth.se>2016-07-11 00:03:48 +0200
commit0a56172712a70ac5fcfc3ddcf725d78045c599d3 (patch)
treedc27eeb334a44f9bb7a6c577cbf421684d0c4af8 /src/output.h
parentm (diff)
downloadcoopgammad-0a56172712a70ac5fcfc3ddcf725d78045c599d3.tar.gz
coopgammad-0a56172712a70ac5fcfc3ddcf725d78045c599d3.tar.bz2
coopgammad-0a56172712a70ac5fcfc3ddcf725d78045c599d3.tar.xz
Sort outputs by name
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'src/output.h')
-rw-r--r--src/output.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/output.h b/src/output.h
index b27059f..6e0c4d5 100644
--- a/src/output.h
+++ b/src/output.h
@@ -139,3 +139,15 @@ size_t output_marshal(const struct output* this, char* buf);
*/
size_t output_unmarshal(struct output* this, const char* buf);
+/**
+ * Compare to outputs by the names of their respective CRTC:s
+ *
+ * @param a Return -1 if this one is lower
+ * @param b Return +1 if this one is higher
+ * @return See description of `a` and `b`,
+ * 0 if returned if they are the same
+ */
+#if defined(__GNUC__)
+__attribute__((pure))
+#endif
+int output_cmp_by_name(const void* a, const void* b);