enum te_substring_mod_op

Overview

The mode of operation for substring modifications. More…

#include <te_string.h>

enum te_substring_mod_op {
    TE_SUBSTRING_MOD_OP_PREPEND,
    TE_SUBSTRING_MOD_OP_APPEND,
    TE_SUBSTRING_MOD_OP_REPLACE,
};

Detailed Documentation

The mode of operation for substring modifications.

Enum Values

TE_SUBSTRING_MOD_OP_PREPEND

Prepend a new string to the content of a substring.

TE_SUBSTRING_MOD_OP_APPEND

Append a new string to the content of a substring.

TE_SUBSTRING_MOD_OP_REPLACE

Replace a substring with a new string.