Lines Matching defs:copy
7 * copy of this software and associated documentation files (the
9 * without limitation the rights to use, copy, modify, merge, publish,
156 * Make a copy of a string in the specified string group, and return
157 * a pointer to the copy.
163 * other characters when making the copy.
165 * return char * The pointer to the copy of the string,
170 char *copy; /* The recorded copy of string[] */
181 copy = _sg_alloc_string(sg, len);
182 if(copy) {
191 char *dst = copy; /* A pointer into the cached copy of the */
204 * If escapes have already been removed, copy the input string directly
208 strlcpy(copy, string, len + 1);
212 * Return a pointer to the copy of the string (or NULL if the allocation
215 return copy;
225 * return char * The pointer to the copy of the string,
231 char *copy; /* The allocated string */
272 copy = node->block + sg->block_size - node->unused;
277 return copy;