File diff r18846:940300a5be9b → r18847:c72a2915657e
src/string.cpp
Show inline comments
 
@@ -520,13 +520,13 @@ size_t Utf8Encode(char *buf, WChar c)
 

	
 
/**
 
 * Properly terminate an UTF8 string to some maximum length
 
 * @param s string to check if it needs additional trimming
 
 * @param maxlen the maximum length the buffer can have.
 
 * @return the new length in bytes of the string (eg. strlen(new_string))
 
 * @NOTE maxlen is the string length _INCLUDING_ the terminating '\0'
 
 * @note maxlen is the string length _INCLUDING_ the terminating '\0'
 
 */
 
size_t Utf8TrimString(char *s, size_t maxlen)
 
{
 
	size_t length = 0;
 

	
 
	for (const char *ptr = strchr(s, '\0'); *s != '\0';) {