aseprite/src/base/trim_string.h

19 lines
370 B
C
Raw Normal View History

// Aseprite Base Library
// Copyright (c) 2001-2013 David Capello
//
// This source file is distributed under MIT license,
// please read LICENSE.txt for more information.
#ifndef BASE_TRIM_STRING_H_INCLUDED
#define BASE_TRIM_STRING_H_INCLUDED
#include "base/string.h"
namespace base {
void trim_string(const base::string& input, base::string& output);
}
#endif