athena/include/utility.hpp

56 lines
1.5 KiB
C++
Raw Normal View History

// This file is part of libZelda.
//
// libZelda is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// libZelda is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with libZelda. If not, see <http://www.gnu.org/licenses/>
2013-01-26 20:19:24 +00:00
#ifndef __UTILITY_H__
#define __UTILITY_H__
#include <string>
2013-09-09 03:36:54 +00:00
#include <vector>
2013-01-26 20:19:24 +00:00
#include "Types.hpp"
namespace zelda
{
namespace utility
{
2013-01-26 20:19:24 +00:00
bool isEmpty(Int8*, Uint32);
Uint16 swapU16(Uint16 val );
2013-09-09 03:36:54 +00:00
Int16 swap16 (Int16 val );
Uint32 swapU32(Uint32 val);
Int32 swap32 (Int32 val );
Uint64 swapU64(Uint64 val);
Int64 swap64 (Int64 val);
2013-01-26 20:19:24 +00:00
2013-07-21 03:57:20 +00:00
float swapFloat(float val);
double swapDouble(double val);
2013-01-26 20:19:24 +00:00
bool isSystemBigEndian();
void fillRandom(Uint8 * rndArea, Uint8 count);
2013-01-26 20:19:24 +00:00
2013-09-09 03:36:54 +00:00
std::vector<std::string> split(const std::string &s, char delim);
void tolower(std::string& str);
void toupper(std::string& str);
std::string sprintf(const char* fmt, ...);
bool parseBool(const std::string& boolean, bool &valid);
int countChar(const std::string& str, const char chr, int* lastOccur = NULL);
2013-09-09 03:36:54 +00:00
} // utility
} // zelda
2013-01-26 20:19:24 +00:00
#endif