CoreNEURON
string_utils.h File Reference

Utility functions for strings. More...

Detailed Description

Utility functions for strings.

Definition in file string_utils.h.

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...
 

Function Documentation

◆ strcat_at_pos()

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.

Parameters
destDestination string
start_positionPosition of dest to start writing src
srcSource string
src_lengthLength of src to append to dest
Returns
Position of the final character of dest after appending src (including the null terminating character)

Definition at line 11 of file string_utils.cpp.