1 /*
2    mkvmerge -- utility for splicing together matroska files
3    from component media subtypes
4 
5    Distributed under the GPL v2
6    see the file COPYING for details
7    or visit https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
8 
9    helper functions for APE tags
10 
11    Written by James Almer <jamrial@gmail.com>
12    Adapted from ID3 parsing code by Moritz Bunkus <moritz@bunkus.org>
13 */
14 
15 #pragma once
16 
17 #include "common/common_pch.h"
18 
19 namespace mtx::ape {
20 
21 int tag_present_at_end(mm_io_c &io);
22 
23 }
24