summaryrefslogtreecommitdiff
path: root/utils/bazel/deps_impl/terminfo_test.c
blob: 3b401728e797340bedd0b6e723239d4caee053d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/*
This file is licensed under the Apache License v2.0 with LLVM Exceptions.
See https://llvm.org/LICENSE.txt for license information.
SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
*/

extern int setupterm(char *term, int filedes, int *errret);
extern struct term *set_curterm(struct term *termp);
extern int del_curterm(struct term *termp);
extern int tigetnum(char *capname);

int main() {
  setupterm(0, 0, 0);
  set_curterm(0);
  del_curterm(0);
  tigetnum(0);
}