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

strtrexpand - expand tr-like notation in string

Author

       Lars Wirzenius (lars.wirzenius@helsinki.fi)

Publib                                        C Programmer's Manual                            STRTREXPAND(3pub)

Description

strtrexpand  will  convert  shorthand notation similar to that used by tr(1) into the equivalent longhand
       notation.  The supported short forms are:

       a-b     All characters from a to b, inclusive, in the order given by their character codes.

       \a      The character a.

       \o\oo\ooo
               Character with octal code o, oo, or ooo, respectively.

Name

       strtrexpand - expand tr-like notation in string

Return Value

strtrexpand returns nothing.

See Also

publib(3), tr(1)

Synopsis

       #include <publib.h>
       void strtrexpand(char *tgt, const char *src);

See Also