NULL is defined in stddef.h
[vlc/solaris.git] / include / vlc_fixups.h
blob512b78557e68088bb69bbd8317993df56bf5be4b
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 *****************************************************************************/
21 /**
22 * \file
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 */
31 #endif
33 #ifndef HAVE_LLDIV
34 typedef struct
36 long long quot; /* Quotient. */
37 long long rem; /* Remainder. */
38 } lldiv_t;
39 #endif
41 #if !defined(HAVE_GETENV) || \
42 !defined(HAVE_USELOCALE)
43 # include <stddef.h> /* NULL */
44 #endif
46 #ifndef HAVE_REWIND
47 # include <stdio.h> /* FILE */
48 #endif
50 #if !defined (HAVE_STRLCPY) || \
51 !defined (HAVE_STRNDUP) || \
52 !defined (HAVE_STRNLEN) || \
53 !defined (HAVE_GETCWD)
54 # include <stddef.h> /* size_t */
55 #endif
57 #ifndef HAVE_VASPRINTF
58 # include <stdarg.h> /* va_list */
59 #endif
61 #ifndef HAVE_GETPID
62 # include <sys/types.h> /* pid_t */
63 #endif
65 #ifdef __cplusplus
66 extern "C" {
67 #endif
69 #ifndef HAVE_STRDUP
70 char *strdup (const char *);
71 #endif
73 #ifndef HAVE_VASPRINTF
74 int vasprintf (char **, const char *, va_list);
75 #endif
77 #ifndef HAVE_ASPRINTF
78 int asprintf (char **, const char *, ...);
79 #endif
81 #ifndef HAVE_STRNLEN
82 size_t strnlen (const char *, size_t);
83 #endif
85 #ifndef HAVE_STRNDUP
86 char *strndup (const char *, size_t);
87 #endif
89 #ifndef HAVE_STRLCPY
90 size_t strlcpy (char *, const char *, size_t);
91 #endif
93 #ifndef HAVE_STRTOF
94 float strtof (const char *, char **);
95 #endif
97 #ifndef HAVE_ATOF
98 double atof (const char *);
99 #endif
101 #ifndef HAVE_STRTOLL
102 long long int strtoll (const char *, char **, int);
103 #endif
105 #ifndef HAVE_STRSEP
106 char *strsep (char **, const char *);
107 #endif
109 #ifndef HAVE_ATOLL
110 long long atoll (const char *);
111 #endif
113 #ifndef HAVE_LLDIV
114 lldiv_t lldiv (long long, long long);
115 #endif
117 #ifndef HAVE_STRCASECMP
118 int strcasecmp (const char *, const char *);
119 #endif
121 #ifndef HAVE_STRNCASECMP
122 int strncasecmp (const char *, const char *, size_t);
123 #endif
125 #ifndef HAVE_STRCASESTR
126 char *strcasestr (const char *, const char *);
127 #endif
129 #ifndef HAVE_GMTIME_R
130 struct tm *gmtime_r (const time_t *, struct tm *);
131 #endif
133 #ifndef HAVE_LOCALTIME_R
134 struct tm *localtime_r (const time_t *, struct tm *);
135 #endif
137 #ifndef HAVE_REWIND
138 void rewind (FILE *);
139 #endif
141 #ifndef HAVE_GETCWD
142 char *getcwd (char *buf, size_t size);
143 #endif
145 #ifndef HAVE_GETPID
146 pid_t getpid (void);
147 #endif
149 #ifdef __cplusplus
150 } /* extern "C" */
151 #endif
153 #ifndef HAVE_GETENV
154 static inline char *getenv (const char *name)
156 (void)name;
157 return NULL;
159 #endif
161 /* Alignment of critical static data structures */
162 #ifdef ATTRIBUTE_ALIGNED_MAX
163 # define ATTR_ALIGN(align) __attribute__ ((__aligned__ ((ATTRIBUTE_ALIGNED_MAX < align) ? ATTRIBUTE_ALIGNED_MAX : align)))
164 #else
165 # define ATTR_ALIGN(align)
166 #endif
168 #ifndef HAVE_USELOCALE
169 #define LC_NUMERIC_MASK 0
170 typedef void *locale_t;
171 static inline locale_t uselocale(locale_t loc)
173 (void)loc;
174 return NULL;
176 static inline void freelocale(locale_t loc)
178 (void)loc;
180 static inline locale_t newlocale(int mask, const char * locale, locale_t base)
182 (void)mask; (void)locale; (void)base;
183 return NULL;
185 #endif
187 #ifdef WIN32
188 # include <dirent.h>
189 # define opendir Use_utf8_opendir_or_vlc_wopendir_instead!
190 # define readdir Use_utf8_readdir_or_vlc_wreaddir_instead!
191 # define closedir vlc_wclosedir
192 #endif
194 /* libintl support */
195 #define _(str) vlc_gettext (str)
196 #define N_(str) gettext_noop (str)
197 #define gettext_noop(str) (str)
199 #ifndef HAVE_SWAB
200 void swab (const void *, void *, ssize_t);
201 #endif
203 #endif /* !LIBVLC_FIXUPS_H */