为什么 setupterm 会终止程序?

发布于 2024-09-04 07:58:15 字数 400 浏览 4 评论 0原文

这是《Linux 编程入门》一书中的示例程序:

#include <stdio.h>
#include <term.h>
#include <curses.h>
#include <stdlib.h>

int main()
{
    setupterm("unlisted", fileno(stdout), (int *)0);
    printf("Done.\n");
    exit(0);
}

运行它,我得到以下结果:

./badterm 
'unlisted': unknown terminal type.

根据 setupterm 函数定义,它必须返回 0:“terminfo 数据库中没有匹配的条目”。相反,程序会终止。为什么?

This is sample program from "Beginning Linux Programming" book:

#include <stdio.h>
#include <term.h>
#include <curses.h>
#include <stdlib.h>

int main()
{
    setupterm("unlisted", fileno(stdout), (int *)0);
    printf("Done.\n");
    exit(0);
}

Running it, I have this result:

./badterm 
'unlisted': unknown terminal type.

According to setupterm function definition, it must return 0: "No matching entry in terminfo database". Instead of this, program terminates. Why?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

冷夜 2024-09-11 07:58:15

看来是你要求它这样做的。来自我机器上的 man setupterm

 如果 errrret 为空,setupterm 会在找到错误时打印一条错误消息
  错误并退出。因此,最简单的调用是:

        setupterm((char *)0, 1, (int *)0);

  它使用所有默认值并将输出发送到标准输出。

据推测,如果您想自己处理任何错误返回,则必须为 errrret(第三个)参数提供非 NULL 指针值。

It looks like you asked it to do so. From man setupterm on my machine:

  If errret is null, setupterm prints an error message  upon  finding  an
  error and exits.  Thus, the simplest call is:

        setupterm((char *)0, 1, (int *)0);

  which uses all the defaults and sends the output to stdout.

Presumably, if you want to handle any error return yourself, you must supply a non-NULL pointer value for the errret (third) parameter.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文