aboutsummaryrefslogtreecommitdiff
path: root/t/01base.c
blob: 7fbddc07df1ae85e6b2827b338d4bf323f03592b (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"

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

  printf("1..2\n");

  tk = termkey_new(0, TERMKEY_FLAG_NOTERMIOS);

  printf(tk ? "" : "not ");
  printf("ok 1 - termkey_new\n");

  termkey_destroy(tk);

  printf("ok 2 - termkey_free\n");

  return 0;
}