Lines Matching defs:src
8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
143 z_canoninplace(char *src)
148 /* keep a ptr to the beginning of the src string */
149 src_start = src;
151 dst = src;
152 while (*src) {
153 if (*src == '/') {
155 while (*src == '/')
156 src++;
158 *dst++ = *src++;