mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-14 11:32:34 +00:00
isupper() and tolower() are declared in <ctype.h>
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15016 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
61114619bc
commit
497b52f381
@ -16,6 +16,7 @@
|
||||
|
||||
#include "Support/DataTypes.h"
|
||||
#include <string>
|
||||
#include <ctype.h>
|
||||
#include <stdio.h>
|
||||
|
||||
namespace llvm {
|
||||
@ -51,7 +52,6 @@ static inline std::string utostr(unsigned long long X, bool isNeg = false) {
|
||||
}
|
||||
|
||||
if (isNeg) *--BufPtr = '-'; // Add negative sign...
|
||||
|
||||
return std::string(BufPtr);
|
||||
}
|
||||
|
||||
@ -98,9 +98,9 @@ static inline std::string ftostr(double V) {
|
||||
}
|
||||
|
||||
static inline std::string LowercaseString(const std::string &S) {
|
||||
std::string result (S);
|
||||
std::string result(S);
|
||||
for (unsigned i = 0; i < S.length(); ++i)
|
||||
if (isupper (result[i]))
|
||||
if (isupper(result[i]))
|
||||
result[i] = (char)tolower(result[i]);
|
||||
return result;
|
||||
}
|
||||
|
@ -16,6 +16,7 @@
|
||||
|
||||
#include "Support/DataTypes.h"
|
||||
#include <string>
|
||||
#include <ctype.h>
|
||||
#include <stdio.h>
|
||||
|
||||
namespace llvm {
|
||||
@ -51,7 +52,6 @@ static inline std::string utostr(unsigned long long X, bool isNeg = false) {
|
||||
}
|
||||
|
||||
if (isNeg) *--BufPtr = '-'; // Add negative sign...
|
||||
|
||||
return std::string(BufPtr);
|
||||
}
|
||||
|
||||
@ -98,9 +98,9 @@ static inline std::string ftostr(double V) {
|
||||
}
|
||||
|
||||
static inline std::string LowercaseString(const std::string &S) {
|
||||
std::string result (S);
|
||||
std::string result(S);
|
||||
for (unsigned i = 0; i < S.length(); ++i)
|
||||
if (isupper (result[i]))
|
||||
if (isupper(result[i]))
|
||||
result[i] = (char)tolower(result[i]);
|
||||
return result;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user