aseprite/src/base/string.h
2013-01-27 12:13:13 -03:00

22 lines
423 B
C++

// ASEPRITE base library
// Copyright (C) 2001-2013 David Capello
//
// This source file is distributed under a BSD-like license, please
// read LICENSE.txt for more information.
#ifndef BASE_STRING_H_INCLUDED
#define BASE_STRING_H_INCLUDED
#include <string>
namespace base {
typedef std::string string;
string string_to_lower(const string& original);
string string_to_upper(const string& original);
}
#endif