Aegisub/aegisub/libaegisub/common/util.cpp

47 lines
1.3 KiB
C++
Raw Normal View History

// Copyright (c) 2011, Amar Takhar <verm@aegisub.org>
//
// Permission to use, copy, modify, and distribute this software for any
// purpose with or without fee is hereby granted, provided that the above
// copyright notice and this permission notice appear in all copies.
//
// THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
// WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
// MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
// ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
// WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
// ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
// OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
/// @file util.cpp
/// @brief Unix utility methods.
/// @ingroup libaegisub
#include <errno.h>
#include <climits>
#include <cstdio>
#include "libaegisub/util.h"
2012-11-13 15:07:39 +01:00
#include <boost/algorithm/string/case_conv.hpp>
namespace agi {
namespace util {
void str_lower(std::string &str) {
2012-11-13 15:07:39 +01:00
boost::to_lower(str);
}
2013-01-01 17:54:55 +01:00
int strtoi(std::string const& str) {
errno = 0;
2012-11-13 15:07:39 +01:00
long l = strtol(str.c_str(), nullptr, 10);
if ((errno == ERANGE) || (l < INT_MIN) || (l > INT_MAX))
return 0;
return (int)l;
}
} // namespace util
} // namespace agi