]> git.sesse.net Git - vlc/blob - include/vlc_fixups.h
Inline strnlen() and use it
[vlc] / include / vlc_fixups.h
1 /*****************************************************************************
2  * fixups.h: portability fixups included from config.h
3  *****************************************************************************
4  * Copyright © 1998-2008 the VideoLAN project
5  *
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.
10  *
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.
15  *
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  *****************************************************************************/
20
21 /**
22  * \file
23  * This file is a collection of portability fixes
24  */
25
26 #ifndef LIBVLC_FIXUPS_H
27 # define LIBVLC_FIXUPS_H 1
28
29 # include <string.h>
30 # include <stdlib.h>
31
32 #ifndef HAVE_STRDUP
33 static inline char *strdup (const char *str)
34 {
35     size_t len = strlen (str) + 1;
36     char *res = malloc (len);
37     if (res) memcpy (res, str, len);
38     return res;
39 }
40 #endif
41
42 #ifndef HAVE_VASPRINTF
43 # define vasprintf vlc_vasprintf
44 #endif
45
46 #ifndef HAVE_ASPRINTF
47 # define asprintf vlc_asprintf
48 #endif
49
50 #ifndef HAVE_STRNLEN
51 static inline size_t strnlen (const char *str, size_t max)
52 {
53     const char *end = memchr (str, 0, max);
54     return end ? (size_t)(end - str) : max;
55 }
56 #endif
57
58 #ifndef HAVE_STRNDUP
59 static inline char *strndup (const char *str, size_t max)
60 {
61     size_t len = strnlen (str, max);
62     char *res = malloc (len + 1);
63     if (res)
64     {
65         memcpy (res, str, len);
66         res[len] = '\0';
67     }
68     return res;
69 }
70 #endif
71
72 #ifndef HAVE_STRLCPY
73 # define strlcpy vlc_strlcpy
74 #endif
75
76 #ifndef HAVE_STRTOF
77 # define strtof( a, b ) ((float)strtod (a, b))
78 #endif
79
80 #ifndef HAVE_ATOF
81 # define atof( str ) (strtod ((str), (char **)NULL, 10))
82 #endif
83
84 #ifndef HAVE_STRTOLL
85 # define strtoll vlc_strtoll
86 #endif
87
88 #ifndef HAVE_ATOLL
89 # define atoll( str ) (strtoll ((str), (char **)NULL, 10))
90 #endif
91
92 #ifndef HAVE_LLDIV
93 typedef struct {
94     long long quot; /* Quotient. */
95     long long rem;  /* Remainder. */
96 } lldiv_t;
97
98 static inline lldiv_t lldiv (long long numer, long long denom)
99 {
100     lldiv_t d = { .quot = numer / denom, .rem = numer % denom };
101     return d;
102 }
103 #endif
104
105 #ifndef HAVE_SCANDIR
106 # define scandir vlc_scandir
107 # define alphasort vlc_alphasort
108 #endif
109
110 #ifndef HAVE_GETENV
111 static inline getenv (const char *name)
112 {
113     (void)name;
114     return NULL;
115 }
116 #endif
117
118 #ifndef HAVE_STRCASECMP
119 # ifndef HAVE_STRICMP
120 #  define strcasecmp vlc_strcasecmp
121 # else
122 #  define strcasecmp stricmp
123 # endif
124 #endif
125
126 #ifndef HAVE_STRNCASECMP
127 # ifndef HAVE_STRNICMP
128 #  define strncasecmp vlc_strncasecmp
129 # else
130 #  define strncasecmp strnicmp
131 # endif
132 #endif
133
134 #ifndef HAVE_STRCASESTR
135 # ifndef HAVE_STRISTR
136 #  define strcasestr vlc_strcasestr
137 # else
138 #  define strcasestr stristr
139 # endif
140 #endif
141
142 #ifndef HAVE_LOCALTIME_R
143 /* If localtime_r() is not provided, we assume localtime() uses
144  * thread-specific storage. */
145 # include <time.h>
146 static inline struct tm *localtime_r (const time_t *timep, struct tm *result)
147 {
148     struct tm *s = localtime (timep);
149     if (s == NULL)
150         return NULL;
151
152     *result = *s;
153     return result;
154 }
155 static inline struct tm *gmtime_r (const time_t *timep, struct tm *result)
156 {
157     struct tm *s = gmtime (timep);
158     if (s == NULL)
159         return NULL;
160
161     *result = *s;
162     return result;
163 }
164 #endif
165
166 #ifndef HAVE_USELOCALE
167 typedef void *locale_t;
168 # define newlocale( a, b, c ) ((locale_t)0)
169 # define uselocale( a ) ((locale_t)0)
170 # define freelocale( a ) (void)0
171 #endif
172
173 #ifdef WIN32
174 # include <dirent.h>
175 # define opendir Use_utf8_opendir_or_vlc_wopendir_instead!
176 # define readdir Use_utf8_readdir_or_vlc_wreaddir_instead!
177 # define closedir vlc_wclosedir
178 #endif
179
180 /* libintl support */
181 #define _(str) vlc_gettext (str)
182
183 #if defined (ENABLE_NLS)
184 # include <libintl.h>
185 #else
186 # define dgettext(dom, str) ((char *)(str))
187 #endif
188
189 #define N_(str) gettext_noop (str)
190 #define gettext_noop(str) (str)
191
192 #endif /* !LIBVLC_FIXUPS_H */