File diff r17624:f2c5f47dceaa → r17625:366001a31c88
src/string.cpp
Show inline comments
 
@@ -160,7 +160,11 @@ char *strecpy(char *dst, const char *src
 
	return dst;
 
}
 

	
 

	
 
/**
 
 * Format, "printf", into a newly allocated string.
 
 * @param str The formatting string.
 
 * @return The formatted string. You must free this!
 
 */
 
char *CDECL str_fmt(const char *str, ...)
 
{
 
	char buf[4096];