aseprite/src/base/trim_string.h

19 lines
378 B
C
Raw Normal View History

// ASEPRITE base library
2013-01-27 12:13:13 -03:00
// 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_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