Searched refs:item_to_add (Results 1 - 1 of 1) sorted by relevance

/freebsd-11-stable/contrib/gdb/gdb/tui/
H A Dtui.c459 strcat_to_buf (char *buf, int buflen, const char *item_to_add) argument
461 if (item_to_add != (char *) NULL && buf != (char *) NULL)
463 if ((strlen (buf) + strlen (item_to_add)) <= buflen)
464 strcat (buf, item_to_add);
466 strncat (buf, item_to_add, (buflen - strlen (buf)));

Completed in 54 milliseconds