mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-17 08:32:48 +00:00
26 lines
346 B
C++
26 lines
346 B
C++
|
#include "../lstrings.h"
|
||
|
|
||
|
#include <iostream>
|
||
|
|
||
|
using namespace lyx::support;
|
||
|
|
||
|
using namespace std;
|
||
|
|
||
|
void test_lowercase()
|
||
|
{
|
||
|
cout << lowercase('A') << endl;
|
||
|
cout << lowercase("AlLe") << endl;
|
||
|
}
|
||
|
|
||
|
void test_uppercase()
|
||
|
{
|
||
|
cout << uppercase('a') << endl;
|
||
|
cout << uppercase("AlLe") << endl;
|
||
|
}
|
||
|
|
||
|
int main()
|
||
|
{
|
||
|
test_lowercase();
|
||
|
test_uppercase();
|
||
|
}
|