]> code.citadel.org Git - citadel.git/blob - rss2ctdl/os-support.h
270583fb9b1c8c2be7bd3c8fb36b5b78eee7c903
[citadel.git] / rss2ctdl / os-support.h
1 /*
2  * $Id$
3  * 
4  * Copyright 2003-2004 Oliver Feiler <kiza@kcore.de>
5  *
6  * os-support.h
7  *
8  * Library support functions.
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License version 2 as
12  * published by the Free Software Foundation.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
22  *
23  */
24
25 #ifndef OS_SUPPORT_H
26 #define OS_SUPPORT_H
27
28 #ifdef SUN
29 char* strsep(char** str, const char* delims);
30 #endif
31
32 char *s_strcasestr(char *a, char *b);
33 void * s_malloc (size_t size);
34
35 #endif