diff options
author | Max Kellermann <max@musicpd.org> | 2017-02-08 08:26:58 +0100 |
---|---|---|
committer | Max Kellermann <max@musicpd.org> | 2017-02-08 08:49:42 +0100 |
commit | 03a97d87ea0b813951348d3cb03f0f82abcca12e (patch) | |
tree | f2ef0435fb067b44eb34860c67ee962ede6f3c4d /src/tag/FixString.hxx | |
parent | 8cbf099054d50288075967fc6ccb069640786a50 (diff) |
tag/Tag*: rename several source files
Diffstat (limited to 'src/tag/FixString.hxx')
-rw-r--r-- | src/tag/FixString.hxx | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/src/tag/FixString.hxx b/src/tag/FixString.hxx new file mode 100644 index 000000000..618d9640d --- /dev/null +++ b/src/tag/FixString.hxx @@ -0,0 +1,33 @@ +/* + * Copyright 2003-2017 The Music Player Daemon Project + * http://www.musicpd.org + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License along + * with this program; if not, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + */ + +#ifndef MPD_TAG_STRING_HXX +#define MPD_TAG_STRING_HXX + +#include "check.h" +#include "Compiler.h" + +struct StringView; +template<typename T> struct WritableBuffer; + +gcc_nonnull_all +WritableBuffer<char> +FixTagString(StringView p); + +#endif |