1
0
mirror of https://gitlab.xiph.org/xiph/icecast-common.git synced 2024-09-15 04:08:09 -04:00

Feature: Added stub files for refobject lists

This commit is contained in:
Philipp Schafft 2018-11-07 10:21:38 +00:00
parent bb33f86bc9
commit 5d5424d688
3 changed files with 57 additions and 2 deletions

View File

@ -20,12 +20,14 @@ pkginclude_HEADERS = \
include/igloo/ro.h \
include/igloo/types.h \
include/igloo/typedef.h \
include/igloo/buffer.h
include/igloo/buffer.h \
include/igloo/list.h
libigloo_la_SOURCES = \
src/libigloo.c \
src/ro.c \
src/buffer.c
src/buffer.c \
src/list.c
libigloo_la_LIBADD = \
avl/libiceavl.la \
httpp/libicehttpp.la \

30
include/igloo/list.h Normal file
View File

@ -0,0 +1,30 @@
/* Copyright (C) 2018 Philipp "ph3-der-loewe" Schafft <lion@lion.leolix.org>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library 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
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public
* License along with this library; if not, write to the
* Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
#ifndef _LIBIGLOO__LIST_H_
#define _LIBIGLOO__LIST_H_
#ifdef __cplusplus
extern "C" {
#endif
#ifdef __cplusplus
}
#endif
#endif

23
src/list.c Normal file
View File

@ -0,0 +1,23 @@
/* Copyright (C) 2018 Philipp "ph3-der-loewe" Schafft <lion@lion.leolix.org>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library 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
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public
* License along with this library; if not, write to the
* Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <igloo/list.h>