Lines Matching +full:a +full:- +full:za +full:- +full:z
21 * Replaces str with a string consisting of str with match replaced with
26 * If replstr is NULL, then that internally is changed to a nil-string, so
43 * to duplicate s1. XXX we maybe should double-check whether the match in strnsubst()
69 if ((strlen(s2) + strlen(s1) + strlen(replstr) - in strnsubst()
75 strncat(s2, s1, (uintptr_t)this - (uintptr_t)s1); in strnsubst()
91 char *x, *y, *z, *za; in main() local
97 z = y; in main()
98 strnsubst(&z, "{", "v ", 255); in main()
99 za = z; in main()
100 strnsubst(&z, NULL, za, 255); in main()
101 if (strcmp(z, "v ybir enpury!") == 0) in main()
105 printf("%s\n", z); in main()
108 free(z); in main()
109 free(za); in main()