Lines Matching defs:src
9 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
15 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
268 * Copy src to destination upto but not including the delim.
273 copy_str_till(char *dst, char *src, char delim, int len)
277 while (*src != '\0' && i < len) {
278 if (isspace(*src)) {
280 return (src);
282 if (*src == delim) {
284 return (src);
286 dst[i++] = *src++;
289 return (src);