From a6e0d35d2da3ee4270ddb712410ea0c8c55b0f0f Mon Sep 17 00:00:00 2001 From: Thiago de Arruda Date: Fri, 24 Jul 2015 12:24:25 -0300 Subject: queue: Implement a more flexible event queue --- test/unit/fixtures/queue.h | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 test/unit/fixtures/queue.h (limited to 'test/unit/fixtures/queue.h') 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); -- cgit