* xmlMemStrdupLoc: * @str: the initial string pointer * @file: the file name or NULL * @line: the line number * * DEPRECATED: don't use * * Returns a pointer to the new string or NULL if allocation error occurred. */
| 240 | * Returns a pointer to the new string or NULL if allocation error occurred. |
| 241 | */ |
| 242 | char * |
| 243 | xmlMemStrdupLoc(const char *str, const char *file ATTRIBUTE_UNUSED, |
| 244 | int line ATTRIBUTE_UNUSED) |
| 245 | { |
| 246 | return(xmlMemoryStrdup(str)); |
| 247 | } |
| 248 | |
| 249 | /** |
| 250 | * xmlMemoryStrdup: |
nothing calls this directly
no test coverage detected