aseprite/src/base/trim_string.h

20 lines
383 B
C
Raw Normal View History

// 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
2014-03-29 19:40:17 -03:00
#pragma once
#include "base/string.h"
namespace base {
void trim_string(const base::string& input, base::string& output);
}
#endif