summaryrefslogtreecommitdiff
path: root/src/string.cpp
diff options
context:
space:
mode:
authorfrosch <frosch@openttd.org>2010-08-01 19:44:49 +0000
committerfrosch <frosch@openttd.org>2010-08-01 19:44:49 +0000
commit4bd32799f13480763bfb58db82bb98d1500753ae (patch)
tree3aff9492cad51a7cb456158b0a3a32c90f978fe4 /src/string.cpp
parent613b273f36ffd1d300ea08c5d6b1c469d145a591 (diff)
downloadopenttd-4bd32799f13480763bfb58db82bb98d1500753ae.tar.xz
(svn r20286) -Codechange: Unify end of doxygen comments.
Diffstat (limited to 'src/string.cpp')
-rw-r--r--src/string.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/string.cpp b/src/string.cpp
index 160aa15f9..54a484b79 100644
--- a/src/string.cpp
+++ b/src/string.cpp
@@ -193,7 +193,8 @@ void str_strip_colours(char *str)
* needed, look to r7271 where it was removed because it was broken when
* using certain locales: eg in Turkish the uppercase 'I' was converted to
* '?', so just revert to the old functionality
- * @param str string to convert */
+ * @param str string to convert
+ */
void strtolower(char *str)
{
for (; *str != '\0'; str++) *str = tolower(*str);
@@ -296,7 +297,8 @@ int CDECL seprintf(char *str, const char *last, const char *format, ...)
* @param buf buffer to put the md5sum into
* @param last last character of buffer (usually lastof(buf))
* @param md5sum the md5sum itself
- * @return a pointer to the next character after the md5sum */
+ * @return a pointer to the next character after the md5sum
+ */
char *md5sumToString(char *buf, const char *last, const uint8 md5sum[16])
{
char *p = buf;