1 /*****************************************************************************
2 * fixups.h: portability fixups included from config.h
3 *****************************************************************************
4 * Copyright © 1998-2008 the VideoLAN project
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
19 *****************************************************************************/
23 * This file is a collection of portability fixes
26 #ifndef LIBVLC_FIXUPS_H
27 # define LIBVLC_FIXUPS_H 1
29 #if !defined (HAVE_GMTIME_R) || !defined (HAVE_LOCALTIME_R)
30 # include <time.h> /* time_t */
36 long long quot; /* Quotient. */
37 long long rem; /* Remainder. */
42 # include <stdio.h> /* FILE */
45 #if !defined (HAVE_STRLCPY) || \
46 !defined (HAVE_STRNDUP) || \
47 !defined (HAVE_STRNLEN) || \
48 !defined (HAVE_GETCWD)
49 # include <stddef.h> /* size_t */
52 #ifndef HAVE_VASPRINTF
53 # include <stdarg.h> /* va_list */
61 char *strdup (const char *);
64 #ifndef HAVE_VASPRINTF
65 int vasprintf (char **, const char *, va_list);
69 int asprintf (char **, const char *, ...);
73 size_t strnlen (const char *, size_t);
77 char *strndup (const char *, size_t);
81 size_t strlcpy (char *, const char *, size_t);
85 float strtof (const char *, char **);
89 double atof (const char *);
93 long long int strtoll (const char *, char **, int);
97 char *strsep (char **, const char *);
101 long long atoll (const char *);
105 lldiv_t lldiv (long long, long long);
108 #ifndef HAVE_STRCASECMP
109 int strcasecmp (const char *, const char *);
112 #ifndef HAVE_STRNCASECMP
113 int strncasecmp (const char *, const char *, size_t);
116 #ifndef HAVE_STRCASESTR
117 char *strcasestr (const char *, const char *);
120 #ifndef HAVE_GMTIME_R
121 struct tm *gmtime_r (const time_t *, struct tm *);
124 #ifndef HAVE_LOCALTIME_R
125 struct tm *localtime_r (const time_t *, struct tm *);
129 void rewind (FILE *);
133 char *getcwd (char *buf, size_t size);
141 static inline char *getenv (const char *name)
148 /* Alignment of critical static data structures */
149 #ifdef ATTRIBUTE_ALIGNED_MAX
150 # define ATTR_ALIGN(align) __attribute__ ((__aligned__ ((ATTRIBUTE_ALIGNED_MAX < align) ? ATTRIBUTE_ALIGNED_MAX : align)))
152 # define ATTR_ALIGN(align)
155 #ifndef HAVE_USELOCALE
156 typedef void *locale_t;
157 # define newlocale( a, b, c ) ((locale_t)0)
158 # define uselocale( a ) ((locale_t)0)
159 # define freelocale( a ) (void)0
164 # define opendir Use_utf8_opendir_or_vlc_wopendir_instead!
165 # define readdir Use_utf8_readdir_or_vlc_wreaddir_instead!
166 # define closedir vlc_wclosedir
169 /* libintl support */
170 #define _(str) vlc_gettext (str)
171 #define N_(str) gettext_noop (str)
172 #define gettext_noop(str) (str)
175 void swab (const void *, void *, ssize_t);
178 #endif /* !LIBVLC_FIXUPS_H */