29 lines
437 B
C++
29 lines
437 B
C++
// Copyright (C) 2007-2025 EQ2EMulator
|
|
// Licensed under GPL v3
|
|
#include "unix.h"
|
|
#include <string.h>
|
|
#include <ctype.h>
|
|
|
|
void Sleep(unsigned int x) {
|
|
if (x > 0)
|
|
usleep(x*1000);
|
|
}
|
|
|
|
char* strupr(char* tmp) {
|
|
int l = strlen(tmp);
|
|
for (int x = 0; x < l; x++) {
|
|
tmp[x] = toupper(tmp[x]);
|
|
}
|
|
return tmp;
|
|
}
|
|
|
|
char* strlwr(char* tmp) {
|
|
int l = strlen(tmp);
|
|
for (int x = 0; x < l; x++) {
|
|
tmp[x] = tolower(tmp[x]);
|
|
}
|
|
return tmp;
|
|
}
|
|
|
|
|