3

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?

1 Answer 1

5

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.

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.