Home | History | Annotate | Download | only in libiberty

Lines Matching refs:concat

24 @deftypefn Extension char* concat (const char *@var{s1}, const char *@var{s2}, @
140 concat (const char *first, ...)
163 Same as @code{concat}, except that if @var{optr} is not @code{NULL} it
207 printf ("\"\" = \"%s\"\n", concat (NULLP));
208 printf ("\"a\" = \"%s\"\n", concat ("a", NULLP));
209 printf ("\"ab\" = \"%s\"\n", concat ("a", "b", NULLP));
210 printf ("\"abc\" = \"%s\"\n", concat ("a", "b", "c", NULLP));
211 printf ("\"abcd\" = \"%s\"\n", concat ("ab", "cd", NULLP));
212 printf ("\"abcde\" = \"%s\"\n", concat ("ab", "c", "de", NULLP));
213 printf ("\"abcdef\" = \"%s\"\n", concat ("", "a", "", "bcd", "ef", NULLP));