1al_ustr_replace_range(3)   Library Functions Manual   al_ustr_replace_range(3)
2
3
4

NAME

6       al_ustr_replace_range
7

SYNOPSIS

9              #include <allegro5/allegro.h>
10
11              bool al_ustr_replace_range(ALLEGRO_USTR *us1, int start_pos1, int end_pos1,
12                 const ALLEGRO_USTR *us2)
13

DESCRIPTION

15       Replace  the part of us1 in the byte interval [start_pos, end_pos) with
16       the contents of us2.  start_pos cannot be less than 0.  If start_pos is
17       past  the  end  of us1 then the space between the end of the string and
18       start_pos will be padded with NUL (`\0') bytes.
19
20       Use al_ustr_offset(3) to find the byte offsets.
21
22       Returns true on success, false on error.
23

SEE ALSO

25       al_ustr_set_chr(3)
26
27
28
29Allegro reference manual                              al_ustr_replace_range(3)
Impressum