aboutsummaryrefslogtreecommitdiff
path: root/test/unit/fixtures/queue.h
diff options
context:
space:
mode:
authorThiago de Arruda <tpadilha84@gmail.com>2015-07-24 12:24:25 -0300
committerThiago de Arruda <tpadilha84@gmail.com>2015-08-13 08:46:21 -0300
commita6e0d35d2da3ee4270ddb712410ea0c8c55b0f0f (patch)
treecb5c01ffad37d69721daae3c3c3ae45ada87c197 /test/unit/fixtures/queue.h
parent1a7a020b68ed50d52dafa4ccc72a12686942e6b7 (diff)
downloadrneovim-a6e0d35d2da3ee4270ddb712410ea0c8c55b0f0f.tar.gz
rneovim-a6e0d35d2da3ee4270ddb712410ea0c8c55b0f0f.tar.bz2
rneovim-a6e0d35d2da3ee4270ddb712410ea0c8c55b0f0f.zip
queue: Implement a more flexible event queue
Diffstat (limited to 'test/unit/fixtures/queue.h')
-rw-r--r--test/unit/fixtures/queue.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/unit/fixtures/queue.h b/test/unit/fixtures/queue.h
new file mode 100644
index 0000000000..ae949c9f29
--- /dev/null
+++ b/test/unit/fixtures/queue.h
@@ -0,0 +1,4 @@
+#include "nvim/event/queue.h"
+
+void ut_queue_put(Queue *queue, const char *str);
+const char *ut_queue_get(Queue *queue);