Home | History | Annotate | Download | only in intl

Lines Matching refs:stpcpy

19 /* Tell glibc's <string.h> to provide a prototype for stpcpy().
56 # ifndef stpcpy
57 # define stpcpy(dest, src) __stpcpy(dest, src)
61 #define stpcpy(dest, src) my_stpcpy(dest, src)
62 static char *stpcpy (char *dest, const char *src);
226 cp = stpcpy (cp, language);
231 cp = stpcpy (cp, territory);
236 cp = stpcpy (cp, codeset);
241 cp = stpcpy (cp, normalized_codeset);
248 cp = stpcpy (cp, modifier);
253 cp = stpcpy (cp, special);
259 cp = stpcpy (cp, sponsor);
263 cp = stpcpy (cp, revision);
268 stpcpy (cp, filename);
391 wp = stpcpy (retval, "iso");
411 avoid the non-standard function stpcpy. In GNU C Library this
416 stpcpy (char *dest, const char *src)