blob: ea7194b46d1f996d14c2cacfee3452b92405521a [file] [log] [blame]
LuK133752a81d52025-07-08 18:07:20 -04001/* This file was generated by ./tinfo/MKfallback.sh */
2
3/*
4 * DO NOT EDIT THIS FILE BY HAND!
5 */
6
7#include <curses.priv.h>
8
9NCURSES_EXPORT(const TERMTYPE2 *)
10_nc_fallback2 (const char *name GCC_UNUSED)
11{
12 /* the fallback list is empty */
13 return((const TERMTYPE2 *)0);
14}
15
16#if NCURSES_EXT_NUMBERS
17#undef _nc_fallback
18
19NCURSES_EXPORT(const TERMTYPE *)
20_nc_fallback (const char *name)
21{
22 const TERMTYPE2 *tp = _nc_fallback2(name);
23 const TERMTYPE *result = 0;
24 if (tp != 0) {
25 static TERMTYPE temp;
26 _nc_export_termtype2(&temp, tp);
27 result = &temp;
28 }
29 return result;
30}
31#endif