strigi/src/streams
compat.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021 #ifndef _STRIGI_COMPAT_H
00022 #define _STRIGI_COMPAT_H
00023
00024 #ifdef HAVE_CONFIG_H
00025 # include "config.h"
00026 #endif
00027
00028 #include <strigi/strigiconfig.h>
00029
00030 #ifndef HAVE_ISBLANK
00031 STREAMS_EXPORT int isblank(char c);
00032 #endif
00033
00034 #ifndef HAVE_SETENV
00035 STREAMS_EXPORT int setenv(const char *name, const char *value, int overwrite);
00036 #endif
00037
00038 #ifndef HAVE_STRCASECMP
00039 STREAMS_EXPORT int strcasecmp(const char *s1, const char *s2);
00040 #endif
00041
00042 #ifndef HAVE_STRNCASECMP
00043 STREAMS_EXPORT int strncasecmp(const char *s1, const char *s2, int l);
00044 #endif
00045
00046 #ifndef HAVE_STRCASESTR
00047 STREAMS_EXPORT const char *strcasestr(const char *big, const char *little);
00048 #endif
00049
00050 #ifndef HAVE_MKSTEMP
00051 STREAMS_EXPORT int mkstemp(char *tmpl);
00052 #endif
00053
00054 #endif // _STRIGI_COMPAT_H