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

Function re__strncopy

extern/editline/src/refresh.c:441–447  ·  view source on GitHub ↗

re__strncopy(): * Like strncpy without padding. */

Source from the content-addressed store, hash-verified

439 * Like strncpy without padding.
440 */
441private void
442re__strncopy(Char *a, Char *b, size_t n)
443{
444
445 while (n-- && *b)
446 *a++ = *b++;
447}
448
449/* re_clear_eol():
450 * Find the number of characters we need to clear till the end of line

Callers 1

re_update_lineFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected