Add a CROM_GET_CABABILITY check for those DVDROMs that will reject CDROMVOLREAD.
[xiph/unicode.git] / ogg-tools / oggsplit / common.h
bloba608102d0e2143c80ee632ea02f543c45e4eeab1
1 /*
2 * oggsplit - splits multiplexed Ogg files into separate files
4 * Copyright (C) 2003 Philip Jägenstedt
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2, or (at your option)
9 * any later version.
12 #ifndef _XMALLOC_H
13 #define _XMALLOC_H
15 void *xmalloc(size_t size);
16 void *xrealloc(void *p, size_t size);
17 char *xstrdup(const char *source);
19 #endif /* _XMALLOC_H */