summaryrefslogtreecommitdiff
path: root/iup/src/iup_str.h
diff options
context:
space:
mode:
authorNicolas "Pixel" Noble <pixel@nobis-crew.org>2010-09-09 07:31:47 +0200
committerNicolas "Pixel" Noble <pixel@nobis-crew.org>2010-09-09 07:31:47 +0200
commit547c17bb1c2d3ae6c187bf2082b6b5ada3f124c1 (patch)
treef840a9df4abd05989095506f404e67312cfc4718 /iup/src/iup_str.h
parentd5217aa87d0ff5e379ec0ff2c65633e8026befc8 (diff)
Fixing iupStrToMac.
Diffstat (limited to 'iup/src/iup_str.h')
-rwxr-xr-xiup/src/iup_str.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/iup/src/iup_str.h b/iup/src/iup_str.h
index 1c2e7a5..e7599fb 100755
--- a/iup/src/iup_str.h
+++ b/iup/src/iup_str.h
@@ -150,10 +150,9 @@ int iupStrReplace(char* str, char src, char dst);
* \ingroup str */
void iupStrToUnix(char* str);
-/** Convert line ends to MAC format (one \r per line).
- * If returned pointer different than input it must be freed.
+/** Convert line ends to MAC format in place (one \r per line).
* \ingroup str */
-char* iupStrToMac(const char* str);
+void iupStrToMac(char* str);
/** Convert line ends to DOS/Windows format (the sequence \r\n per line).
* If returned pointer different than input it must be freed.