X-Git-Url: https://ncurses.scripts.mit.edu/?p=ncurses.git;a=blobdiff_plain;f=man%2Fcurs_util.3x;h=f833803a412dca6c3df227646d1acbf130438af1;hp=7cee63fe1337babbbabfd246d8f7497097235e6b;hb=152c5a605234b7ea36ba3a03ec07e124bb6aac75;hpb=47d2fb4537d9ad5bb14f4810561a327930ca4280 diff --git a/man/curs_util.3x b/man/curs_util.3x index 7cee63fe..f833803a 100644 --- a/man/curs_util.3x +++ b/man/curs_util.3x @@ -28,7 +28,7 @@ .\" authorization. * .\"*************************************************************************** .\" -.\" $Id: curs_util.3x,v 1.57 2020/02/02 23:34:34 tom Exp $ +.\" $Id: curs_util.3x,v 1.60 2020/12/19 22:44:46 tom Exp $ .TH curs_util 3X "" .ie \n(.g .ds `` \(lq .el .ds `` `` @@ -58,27 +58,27 @@ .SH SYNOPSIS \fB#include \fR .sp -\fBconst char *unctrl(chtype c);\fR +\fBconst char *unctrl(chtype \fP\fIc\fP\fB);\fR .br -\fBwchar_t *wunctrl(cchar_t *c);\fR -.br -\fBconst char *keyname(int c);\fR -.br -\fBconst char *key_name(wchar_t w);\fR +\fBwchar_t *wunctrl(cchar_t *\fP\fIc\fP\fB);\fR +.sp +\fBconst char *keyname(int \fP\fIc\fP\fB);\fR .br +\fBconst char *key_name(wchar_t \fP\fIw\fP\fB);\fR +.sp \fBvoid filter(void);\fR .br \fBvoid nofilter(void);\fR +.sp +\fBvoid use_env(bool \fP\fIf\fP\fB);\fR .br -\fBvoid use_env(bool f);\fR -.br -\fBvoid use_tioctl(bool f);\fR -.br -\fBint putwin(WINDOW *win, FILE *filep);\fR -.br -\fBWINDOW *getwin(FILE *filep);\fR +\fBvoid use_tioctl(bool \fP\fIf\fP\fB);\fR +.sp +\fBint putwin(WINDOW *\fP\fIwin\fP\fB, FILE *\fP\fIfilep\fP\fB);\fR .br -\fBint delay_output(int ms);\fR +\fBWINDOW *getwin(FILE *\fP\fIfilep\fP\fB);\fR +.sp +\fBint delay_output(int \fP\fIms\fP\fB);\fR .br \fBint flushinp(void);\fR .br @@ -344,7 +344,7 @@ the parameter is a 7-bit US\-ASCII code. This is the case that X/Open Curses documented. .bP the parameter is in the range 128\-159, i.e., a C1 control code. -If \fBuse_legacy_coding\fP has been called with a \fB2\fP parameter, +If \fBuse_legacy_coding\fP(3X) has been called with a \fB2\fP parameter, \fBunctrl\fP returns the parameter, i.e., a one-character string with the parameter as the first character. Otherwise, it returns \*(``~@\*('', \*(``~A\*('', etc., @@ -369,14 +369,14 @@ Or they may ignore C1 controls and treat all of the upper-128 codes as printable. This implementation uses 8 bits but does not modify the string to reflect locale. -The \fBuse_legacy_coding\fP function allows the caller to +The \fBuse_legacy_coding\fP(3X) function allows the caller to change the output of \fBunctrl\fP. .PP Likewise, the \fBmeta\fP(3X) function allows the caller to change the output of \fBkeyname\fP, i.e., it determines whether to use the \*(``M\-\*('' prefix for \*(``meta\*('' keys (codes in the range 128 to 255). -Both \fBuse_legacy_coding\fP and \fBmeta\fP succeed only after +Both \fBuse_legacy_coding\fP(3X) and \fBmeta\fP(3X) succeed only after curses is initialized. X/Open Curses does not document the treatment of codes 128 to 159. When treating them as \*(``meta\*('' keys @@ -397,7 +397,6 @@ creating each \fIscreen\fP rather than once only This feature of \fBuse_env\fP is not provided by other implementation of curses. .SH SEE ALSO -\fBlegacy_coding\fR(3X), \fBcurses\fR(3X), \fBcurs_initscr\fR(3X), \fBcurs_inopts\fR(3X),