13c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#ifndef _DESTRINGUTIL_HPP
23c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#define _DESTRINGUTIL_HPP
33c827367444ee418f129b2c238299f49d3264554Jarkko Poyry/*-------------------------------------------------------------------------
43c827367444ee418f129b2c238299f49d3264554Jarkko Poyry * drawElements C++ Base Library
53c827367444ee418f129b2c238299f49d3264554Jarkko Poyry * -----------------------------
63c827367444ee418f129b2c238299f49d3264554Jarkko Poyry *
73c827367444ee418f129b2c238299f49d3264554Jarkko Poyry * Copyright 2014 The Android Open Source Project
83c827367444ee418f129b2c238299f49d3264554Jarkko Poyry *
93c827367444ee418f129b2c238299f49d3264554Jarkko Poyry * Licensed under the Apache License, Version 2.0 (the "License");
103c827367444ee418f129b2c238299f49d3264554Jarkko Poyry * you may not use this file except in compliance with the License.
113c827367444ee418f129b2c238299f49d3264554Jarkko Poyry * You may obtain a copy of the License at
123c827367444ee418f129b2c238299f49d3264554Jarkko Poyry *
133c827367444ee418f129b2c238299f49d3264554Jarkko Poyry *      http://www.apache.org/licenses/LICENSE-2.0
143c827367444ee418f129b2c238299f49d3264554Jarkko Poyry *
153c827367444ee418f129b2c238299f49d3264554Jarkko Poyry * Unless required by applicable law or agreed to in writing, software
163c827367444ee418f129b2c238299f49d3264554Jarkko Poyry * distributed under the License is distributed on an "AS IS" BASIS,
173c827367444ee418f129b2c238299f49d3264554Jarkko Poyry * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
183c827367444ee418f129b2c238299f49d3264554Jarkko Poyry * See the License for the specific language governing permissions and
193c827367444ee418f129b2c238299f49d3264554Jarkko Poyry * limitations under the License.
203c827367444ee418f129b2c238299f49d3264554Jarkko Poyry *
213c827367444ee418f129b2c238299f49d3264554Jarkko Poyry *//*!
223c827367444ee418f129b2c238299f49d3264554Jarkko Poyry * \file
233c827367444ee418f129b2c238299f49d3264554Jarkko Poyry * \brief String utilities.
243c827367444ee418f129b2c238299f49d3264554Jarkko Poyry *//*--------------------------------------------------------------------*/
253c827367444ee418f129b2c238299f49d3264554Jarkko Poyry
263c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#include "deDefs.hpp"
273c827367444ee418f129b2c238299f49d3264554Jarkko Poyry
283c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#include <string>
293c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#include <sstream>
303c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#include <vector>
313c827367444ee418f129b2c238299f49d3264554Jarkko Poyry
323c827367444ee418f129b2c238299f49d3264554Jarkko Poyrynamespace de
333c827367444ee418f129b2c238299f49d3264554Jarkko Poyry{
343c827367444ee418f129b2c238299f49d3264554Jarkko Poyry
353c827367444ee418f129b2c238299f49d3264554Jarkko Poyryvoid StringUtil_selfTest (void);
363c827367444ee418f129b2c238299f49d3264554Jarkko Poyry
373c827367444ee418f129b2c238299f49d3264554Jarkko Poyrytemplate<typename T>
383c827367444ee418f129b2c238299f49d3264554Jarkko Poyryinline std::string toString (const T& value)
393c827367444ee418f129b2c238299f49d3264554Jarkko Poyry{
403c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	std::ostringstream s;
413c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	s << value;
423c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	return s.str();
433c827367444ee418f129b2c238299f49d3264554Jarkko Poyry}
443c827367444ee418f129b2c238299f49d3264554Jarkko Poyry
453c827367444ee418f129b2c238299f49d3264554Jarkko Poyrystd::string					toLower			(const std::string& s);
463c827367444ee418f129b2c238299f49d3264554Jarkko Poyrystd::string					toUpper			(const std::string& s);
473c827367444ee418f129b2c238299f49d3264554Jarkko Poyrystd::string					capitalize		(const std::string& s);
483c827367444ee418f129b2c238299f49d3264554Jarkko Poyrystd::vector<std::string>	splitString		(const std::string& s, char delim='\0');
493c827367444ee418f129b2c238299f49d3264554Jarkko Poyrystd::string					floatToString	(float val, int precision);
506a1979c5e502d1403cbccf122b6dab8dd05b3c63Jarkko Pöyrybool						beginsWith		(const std::string& s, const std::string& prefix);
516a1979c5e502d1403cbccf122b6dab8dd05b3c63Jarkko Pöyrybool						endsWith		(const std::string& s, const std::string& suffix);
523c827367444ee418f129b2c238299f49d3264554Jarkko Poyrychar						toUpper			(char c);
533c827367444ee418f129b2c238299f49d3264554Jarkko Poyrychar						toLower			(char c);
543c827367444ee418f129b2c238299f49d3264554Jarkko Poyrybool						isUpper			(char c);
553c827367444ee418f129b2c238299f49d3264554Jarkko Poyrybool						isLower			(char c);
563c827367444ee418f129b2c238299f49d3264554Jarkko Poyrybool						isDigit			(char c);
573c827367444ee418f129b2c238299f49d3264554Jarkko Poyry
583c827367444ee418f129b2c238299f49d3264554Jarkko Poyry} // de
593c827367444ee418f129b2c238299f49d3264554Jarkko Poyry
603c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#endif // _DESTRINGUTIL_HPP
61