aboutsummaryrefslogtreecommitdiff
path: root/test/unit/fixtures/multiqueue.c
blob: 3a5ddab4b870e7d2140af28ee506e1bdbdbc7a9a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include <string.h>
#include <stdlib.h>
#include "nvim/event/multiqueue.h"
#include "multiqueue.h"


void ut_multiqueue_put(MultiQueue *self, const char *str)
{
  multiqueue_put(self, NULL, 1, str);
}

const char *ut_multiqueue_get(MultiQueue *self)
{
  Event event = multiqueue_get(self);
  return event.argv[0];
}