summaryrefslogtreecommitdiff
path: root/libs/pbd/convert.cc
diff options
context:
space:
mode:
Diffstat (limited to 'libs/pbd/convert.cc')
-rw-r--r--libs/pbd/convert.cc19
1 files changed, 17 insertions, 2 deletions
diff --git a/libs/pbd/convert.cc b/libs/pbd/convert.cc
index 617fbec473..0610567102 100644
--- a/libs/pbd/convert.cc
+++ b/libs/pbd/convert.cc
@@ -106,6 +106,18 @@ atoi (const string& s)
return ::atoi (s.c_str());
}
+int32_t
+atol (const string& s)
+{
+ return (int32_t) ::atol (s.c_str());
+}
+
+int64_t
+atoll (const string& s)
+{
+ return (int64_t) ::atoll (s.c_str());
+}
+
double
atof (const string& s)
{
@@ -282,11 +294,14 @@ length2string (const int64_t frames, const double sample_rate)
return duration_str;
}
+
static bool
chars_equal_ignore_case(char x, char y)
{
- static std::locale loc;
- return toupper(x, loc) == toupper(y, loc);
+ /* app should have called setlocale() if its wants this comparison to be
+ locale sensitive.
+ */
+ return toupper (x) == toupper (y);
}
bool