mirror of https://github.com/mpv-player/mpv
43 lines
1.2 KiB
C
43 lines
1.2 KiB
C
|
/*
|
||
|
* This file is part of mpv.
|
||
|
*
|
||
|
* mpv is free software; you can redistribute it and/or
|
||
|
* modify it under the terms of the GNU Lesser General Public
|
||
|
* License as published by the Free Software Foundation; either
|
||
|
* version 2.1 of the License, or (at your option) any later version.
|
||
|
*
|
||
|
* mpv 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 Lesser General Public License for more details.
|
||
|
*
|
||
|
* You should have received a copy of the GNU Lesser General Public
|
||
|
* License along with mpv. If not, see <http://www.gnu.org/licenses/>.
|
||
|
*/
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#include <stdbool.h>
|
||
|
#include <stdio.h>
|
||
|
#include <stdlib.h>
|
||
|
#include <string.h>
|
||
|
|
||
|
#define MPV_STRINGIFY_(X) #X
|
||
|
#define MPV_STRINGIFY(X) MPV_STRINGIFY_(X)
|
||
|
|
||
|
static inline void check_error(int status)
|
||
|
{
|
||
|
if (status < 0) {
|
||
|
fprintf(stderr, "mpv API error: %s\n", mpv_error_string(status));
|
||
|
exit(1);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
static inline bool str_startswith(const char *str, size_t str_len,
|
||
|
const char *prefix, size_t prefix_len)
|
||
|
{
|
||
|
if (str_len < prefix_len)
|
||
|
return false;
|
||
|
return !memcmp(str, prefix, prefix_len);
|
||
|
}
|