logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

uinsert - Inserts a character in a string. Allegro game programming library.

Description

       Inserts  the  character `c' at the specified `index' in the string, sliding the rest of the data along to
       make room. If `index' is negative, it counts backward from the end of the string. Example:

          uinsert(text_string, 0, prefix_letter);

Name

       uinsert - Inserts a character in a string. Allegro game programming library.

Return Value

       Returns the number of bytes by which the trailing part of the string was moved.

See Also

uoffset(3alleg4), ugetat(3alleg4), usetat(3alleg4), uremove(3alleg4)

Allegro                                           version 4.4.3                                 uinsert(3alleg4)

Synopsis

#include<allegro.h>intuinsert(char*s,intindex,intc);

See Also