MCPcopy Create free account
hub / github.com/FirebirdSQL/firebird / c_delafter1

Function c_delafter1

extern/editline/src/chared.c:143–152  ·  view source on GitHub ↗

c_delafter1(): * Delete the character after the cursor, do not yank */

Source from the content-addressed store, hash-verified

141 * Delete the character after the cursor, do not yank
142 */
143protected void
144c_delafter1(EditLine *el)
145{
146 Char *cp;
147
148 for (cp = el->el_line.cursor; cp <= el->el_line.lastchar; cp++)
149 *cp = cp[1];
150
151 el->el_line.lastchar--;
152}
153
154
155/* c_delbefore():

Callers 1

em_delete_or_listFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected