CoreNEURON
|
#include <cstring>
Go to the source code of this file.
Functions | |
unsigned | strcat_at_pos (char *dest, unsigned start_position, char *src, unsigned src_length) |
Appends a copy of the source string to the destination string. More... | |
unsigned strcat_at_pos | ( | char * | dest, |
unsigned | start_position, | ||
char * | src, | ||
unsigned | src_length | ||
) |
Appends a copy of the source string to the destination string.
A null-character is included at the end of the new string formed by the concatenation of both in destination. It has similar behavior to strcat but better performance in case that it is needed to append a char array to another very large char array.
dest | Destination string |
start_position | Position of dest to start writing src |
src | Source string |
src_length | Length of src to append to dest |
Definition at line 11 of file string_utils.cpp.