CoreNEURON
string_utils.h
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
/**
10
* @file string_utils.h
11
* @brief Utility functions for strings
12
*
13
*/
14
15
#pragma once
16
17
/** @brief Appends a copy of the source string to the destination string.
18
*
19
* A null-character is included at the end of the new string formed by the concatenation of both in
20
* destination. It has similar behavior to strcat but better performance in case that it is needed
21
* to append a char array to another very large char array.
22
*
23
* @param dest Destination string
24
* @param start_position Position of dest to start writing src
25
* @param src Source string
26
* @param src_length Length of src to append to dest
27
* @return Position of the final character of dest after appending src (including the null
28
* terminating character)
29
*/
30
unsigned
strcat_at_pos
(
char
* dest,
unsigned
start_position,
char
* src,
unsigned
src_length);
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.h