* Fixed coding style.

* Since there is no "Haiku license", I replaced that with a reference to the
  MIT license as usual.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@26236 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler
2008-07-02 22:03:04 +00:00
parent 625f6e7f92
commit bb956ce2ea
2 changed files with 12 additions and 10 deletions
+4 -3
View File
@@ -1,6 +1,6 @@
/*
** Copyright 2008, Mika Lindqvist. All rights reserved.
** Distributed under the terms of the Haiku License.
* Copyright 2008, Mika Lindqvist. All rights reserved.
* Distributed under the terms of the MIT License.
*/
#include <ctype.h>
@@ -14,6 +14,7 @@ strlwr(char *str)
*c = tolower(*c);
c++;
}
return(str);
return str;
}
+4 -3
View File
@@ -1,6 +1,6 @@
/*
** Copyright 2008, Mika Lindqvist. All rights reserved.
** Distributed under the terms of the Haiku License.
* Copyright 2008, Mika Lindqvist. All rights reserved.
* Distributed under the terms of the MIT License.
*/
#include <ctype.h>
@@ -14,6 +14,7 @@ strupr(char *str)
*c = toupper(*c);
c++;
}
return(str);
return str;
}