1form_data(3X) form_data(3X)
2
3
4
6 data_ahead, data_behind - test for off-screen data in given forms
7
9 #include <form.h>
10
11 bool data_ahead(const FORM *form);
12 bool data_behind(const FORM *form);
13
15 The function data_ahead tests whether there is off-screen data ahead in
16 the given form. It returns TRUE (1) or FALSE (0).
17
18 The function data_behind tests whether there is off-screen data behind
19 in the given form. It returns TRUE (1) or FALSE (0).
20
22 curses(3X), form(3X).
23
25 The header file <form.h> automatically includes the header file
26 <curses.h>.
27
29 These routines emulate the System V forms library. They were not sup‐
30 ported on Version 7 or BSD versions.
31
33 Juergen Pfeifer. Manual pages and adaptation for new curses by Eric S.
34 Raymond.
35
36
37
38 form_data(3X)