]> git.mxchange.org Git - simgear.git/blobdiff - simgear/misc/strutils.cxx
- new FSF addresses
[simgear.git] / simgear / misc / strutils.cxx
index 2933e0d58427a6627ebc7f329d36c90baf2d3175..8940ea6bf2244343c1e31204df46935bdc0f14eb 100644 (file)
 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 // Library General Public License for more details.
 //
-// You should have received a copy of the GNU Library General Public
-// License along with this library; if not, write to the
-// Free Software Foundation, Inc., 59 Temple Place - Suite 330,
-// Boston, MA  02111-1307, USA.
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
 //
 // $Id$
 
@@ -41,14 +40,14 @@ namespace simgear {
 
            while (i < len)
            {
-               while (i < len && isspace(str[i]))
+               while (i < len && isspace((unsigned char)str[i]))
                {
                    ++i;
                }
 
                j = i;
 
-               while (i < len && !isspace(str[i]))
+               while (i < len && !isspace((unsigned char)str[i]))
                {
                    ++i;
                }
@@ -57,7 +56,7 @@ namespace simgear {
                {
                    result.push_back( str.substr(j, i-j) );
                    ++countsplit;
-                   while (i < len && isspace(str[i]))
+                   while (i < len && isspace((unsigned char)str[i]))
                    {
                        ++i;
                    }