mirror of
https://github.com/aseprite/aseprite.git
synced 2025-03-15 16:21:08 +00:00
20 lines
374 B
C++
20 lines
374 B
C++
// Aseprite Base Library
|
|
// Copyright (c) 2001-2013 David Capello
|
|
//
|
|
// This file is released under the terms of the MIT license.
|
|
// Read LICENSE.txt for more information.
|
|
|
|
#ifndef BASE_TRIM_STRING_H_INCLUDED
|
|
#define BASE_TRIM_STRING_H_INCLUDED
|
|
#pragma once
|
|
|
|
#include <string>
|
|
|
|
namespace base {
|
|
|
|
void trim_string(const std::string& input, std::string& output);
|
|
|
|
}
|
|
|
|
#endif
|