mirror of
https://github.com/aseprite/aseprite.git
synced 2025-03-09 07:13:43 +00:00
22 lines
423 B
C++
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
|