This manual page is for Mac OS X version 10.6.3

If you are running a different version of Mac OS X, view the documentation locally:

  • In Terminal, using the man(1) command

Reading manual pages

Manual pages are intended as a quick reference for people who already understand a technology.

  • For more information about the manual page format, see the manual page for manpages(5).

  • For more information about this technology, look for other documentation in the Apple Reference Library.

  • For general information about writing shell scripts, read Shell Scripting Primer.



curs_delch(3X)                                                                                curs_delch(3X)



NAME
       delch, wdelch, mvdelch, mvwdelch - delete character under the cursor in a curses window

SYNOPSIS
       #include <curses.h>

       int delch(void);
       int wdelch(WINDOW *win);
       int mvdelch(int y, int x);
       int mvwdelch(WINDOW *win, int y, int x);

DESCRIPTION
       These  routines  delete  the character under the cursor; all characters to the right of the cursor on
       the same line are moved to the left one position and the last character on the line is filled with  a
       blank.   The  cursor  position  does not change (after moving to y, x, if specified).  (This does not
       imply use of the hardware delete character feature.)

RETURN VALUE
       All routines return the integer ERR upon failure and an OK (SVr4 specifies  only  "an  integer  value
       other than ERR") upon successful completion.

NOTES
       Note that delch, mvdelch, and mvwdelch may be macros.

PORTABILITY
       These  functions are described in the XSI Curses standard, Issue 4.  The standard specifies that they
       return ERR on failure, but specifies no error conditions.

SEE ALSO
       curses(3X)



                                                                                              curs_delch(3X)

Reporting Problems

The way to report a problem with this manual page depends on the type of problem:

Content errors
Report errors in the content of this documentation with the feedback links below.
Bug reports
Report bugs in the functionality of the described tool or API through Bug Reporter.
Formatting problems
Report formatting mistakes in the online version of these pages with the feedback links below.

Did this document help you? Yes It's good, but... Not helpful...