Blame src/flac/vorbiscomment.h

Packit Service 065837
/* flac - Command-line FLAC encoder/decoder
Packit Service 065837
 * Copyright (C) 2002-2009  Josh Coalson
Packit Service 065837
 * Copyright (C) 2011-2016  Xiph.Org Foundation
Packit Service 065837
 *
Packit Service 065837
 * This program is free software; you can redistribute it and/or
Packit Service 065837
 * modify it under the terms of the GNU General Public License
Packit Service 065837
 * as published by the Free Software Foundation; either version 2
Packit Service 065837
 * of the License, or (at your option) any later version.
Packit Service 065837
 *
Packit Service 065837
 * This program is distributed in the hope that it will be useful,
Packit Service 065837
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit Service 065837
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
Packit Service 065837
 * GNU General Public License for more details.
Packit Service 065837
 *
Packit Service 065837
 * You should have received a copy of the GNU General Public License along
Packit Service 065837
 * with this program; if not, write to the Free Software Foundation, Inc.,
Packit Service 065837
 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
Packit Service 065837
 */
Packit Service 065837
Packit Service 065837
#ifndef flac__vorbiscomment_h
Packit Service 065837
#define flac__vorbiscomment_h
Packit Service 065837
Packit Service 065837
#include "FLAC/metadata.h"
Packit Service 065837
Packit Service 065837
FLAC__bool flac__vorbiscomment_add(FLAC__StreamMetadata *block, const char *comment, FLAC__bool value_from_file, FLAC__bool raw, const char **violation);
Packit Service 065837
Packit Service 065837
#endif