aboutsummaryrefslogtreecommitdiff
path: root/t/01base.c
blob: 359c9ca73636258480bce1fb367d9ca6ce6498f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#include <stdio.h>
#include "../termkey.h"
#include "taplib.h"

int main(int argc, char *argv[])
{
  TermKey   *tk;

  plan_tests(2);

  tk = termkey_new(0, TERMKEY_FLAG_NOTERMIOS);

  ok(!!tk, "termkey_new");

  termkey_destroy(tk);

  ok(1, "termkey_free");

  return exit_status();
}