[ Previous | Next | Table of Contents | Index | Library Home | Legal | Search ]

Technical Reference: Base Operating System and Extensions , Volume 2


typeahead Subroutine

Purpose

Controls checking for typeahead.

Library

Curses Library (libcurses.a)

Syntax

#include <curses.h>
 
int typeahead
(int fildes);

Description

The typeahead subroutine controls the detection of typeahead during a refresh, based on the value of fildes:

Parameters


fildes  

Return Value

Upon successful completion, the typeahead subroutine returns OK. Otherwise, it returns ERR.

Example

To turn typeahead checking on, enter:

typeahead(1);

Implementation Specifics

This subroutine is part of Base Operating System (BOS) Runtime.

Related Information

The doupdate (doupdate, refresh, wnoutrefresh, or wrefresh Subroutines), getch (getch, mvgetch, mvwgetch, or wgetch Subroutine), and initscr (initscr and newterm Subroutine) subroutines.

Curses Overview for Programming in AIX 5L Version 5.1 General Programming Concepts: Writing and Debugging Programs.

List of Curses Subroutines in AIX 5L Version 5.1 General Programming Concepts: Writing and Debugging Programs.

Setting Video Attributes and Curses Options in AIX 5L Version 5.1 General Programming Concepts: Writing and Debugging Programs.


[ Previous | Next | Table of Contents | Index | Library Home | Legal | Search ]