2013-08-08 21:01:20 -03:00
|
|
|
// Aseprite Base Library
|
|
|
|
// Copyright (c) 2001-2013 David Capello
|
2012-06-16 17:50:52 -03:00
|
|
|
//
|
2014-03-29 20:08:05 -03:00
|
|
|
// This file is released under the terms of the MIT license.
|
|
|
|
// Read LICENSE.txt for more information.
|
2012-06-16 17:50:52 -03:00
|
|
|
|
|
|
|
#ifndef BASE_TRIM_STRING_H_INCLUDED
|
|
|
|
#define BASE_TRIM_STRING_H_INCLUDED
|
2014-03-29 19:40:17 -03:00
|
|
|
#pragma once
|
2012-06-16 17:50:52 -03:00
|
|
|
|
2014-04-20 19:53:27 -03:00
|
|
|
#include <string>
|
2012-06-16 17:50:52 -03:00
|
|
|
|
|
|
|
namespace base {
|
|
|
|
|
2014-04-20 19:53:27 -03:00
|
|
|
void trim_string(const std::string& input, std::string& output);
|
2012-06-16 17:50:52 -03:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|