CoreNEURON
string_utils.cpp
Go to the documentation of this file.
1
/*
2
# =============================================================================
3
# Copyright (c) 2016 - 2021 Blue Brain Project/EPFL
4
#
5
# See top-level LICENSE file for details.
6
# =============================================================================
7
*/
8
9
#include <cstring>
10
11
unsigned
strcat_at_pos
(
char
* dest,
unsigned
start_position,
char
* src,
unsigned
src_length) {
12
memcpy(dest + start_position, src, src_length);
13
dest[start_position + src_length] =
'\0'
;
14
return
start_position + src_length;
15
}
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.
Definition:
string_utils.cpp:11
coreneuron
utils
string_utils.cpp