mirror of
https://gitlab.xiph.org/xiph/ezstream.git
synced 2024-11-03 04:17:18 -05:00
400ef3c9cc
I do not plan to ever keep that up to date in case they move again. If you need a copy of the GPL, use the Internet or read COPYING.
33 lines
1.1 KiB
C
33 lines
1.1 KiB
C
/*
|
|
* ezstream - source client for Icecast with external en-/decoder support
|
|
* Copyright (C) 2003, 2004, 2005, 2006 Ed Zaleski <oddsock@oddsock.org>
|
|
* Copyright (C) 2007 Moritz Grimm <mgrimm@mrsserver.net>
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
* published by the Free Software Foundation.
|
|
*
|
|
* 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.
|
|
*/
|
|
|
|
#ifndef __UTIL_H__
|
|
#define __UTIL_H__
|
|
|
|
#include <shout/shout.h>
|
|
|
|
#define ICONV_REPLACE 0
|
|
#define ICONV_TRANSLIT 1
|
|
#define ICONV_IGNORE 2
|
|
|
|
int strrcmp(const char *, const char *);
|
|
int strrcasecmp(const char *, const char *);
|
|
shout_t * stream_setup(const char *, unsigned short, const char *);
|
|
char * CHARtoUTF8(const char *, int);
|
|
char * UTF8toCHAR(const char *, int);
|
|
int ez_gettimeofday(void *);
|
|
|
|
#endif /* __UTIL_H__ */
|