|
176 | 176 | #define DW_METERS_TO_FEET(x) ((x) == G_UNKNOWN ? G_UNKNOWN : (x) * 3.2808399)
|
177 | 177 | #define DW_FEET_TO_METERS(x) ((x) == G_UNKNOWN ? G_UNKNOWN : (x) * 0.3048)
|
178 | 178 | #define DW_KM_TO_MILES(x) ((x) == G_UNKNOWN ? G_UNKNOWN : (x) * 0.621371192)
|
| 179 | +#define DW_MILES_TO_KM(x) ((x) == G_UNKNOWN ? G_UNKNOWN : (x) * 1.609344) |
179 | 180 |
|
180 | 181 | #define DW_KNOTS_TO_MPH(x) ((x) == G_UNKNOWN ? G_UNKNOWN : (x) * 1.15077945)
|
181 | 182 | #define DW_KNOTS_TO_METERS_PER_SEC(x) ((x) == G_UNKNOWN ? G_UNKNOWN : (x) * 0.51444444444)
|
@@ -278,43 +279,34 @@ char *strsep(char **stringp, const char *delim);
|
278 | 279 | char *strtok_r(char *str, const char *delim, char **saveptr);
|
279 | 280 | #endif
|
280 | 281 |
|
281 |
| -// Don't recall why for everyone. |
| 282 | +// Don't recall why I added this for everyone rather than only for Windows. |
282 | 283 | char *strcasestr(const char *S, const char *FIND);
|
283 | 284 |
|
284 | 285 |
|
285 |
| -#if defined(__OpenBSD__) || defined(__FreeBSD__) || defined(__APPLE__) |
| 286 | +// cmake determines whether strlcpy and strlcat are available |
| 287 | +// or if we need to supply our own. |
286 | 288 |
|
287 |
| -// strlcpy and strlcat should be in string.h and the C library. |
288 |
| - |
289 |
| -#else // Use our own copy |
290 |
| - |
291 |
| - |
292 |
| -// These prevent /usr/include/gps.h from providing its own definition. |
293 |
| -#define HAVE_STRLCAT 1 |
294 |
| -#define HAVE_STRLCPY 1 |
295 |
| - |
296 |
| - |
297 |
| -#define DEBUG_STRL 1 |
| 289 | +#define DEBUG_STRL 1 // Extra Debug version when using our own strlcpy, strlcat. |
298 | 290 |
|
| 291 | +#ifndef HAVE_STRLCPY // Need to supply our own. |
299 | 292 | #if DEBUG_STRL
|
300 |
| - |
301 | 293 | #define strlcpy(dst,src,siz) strlcpy_debug(dst,src,siz,__FILE__,__func__,__LINE__)
|
302 |
| -#define strlcat(dst,src,siz) strlcat_debug(dst,src,siz,__FILE__,__func__,__LINE__) |
303 |
| - |
304 | 294 | size_t strlcpy_debug(char *__restrict__ dst, const char *__restrict__ src, size_t siz, const char *file, const char *func, int line);
|
305 |
| -size_t strlcat_debug(char *__restrict__ dst, const char *__restrict__ src, size_t siz, const char *file, const char *func, int line); |
306 |
| - |
307 | 295 | #else
|
308 |
| - |
309 | 296 | #define strlcpy(dst,src,siz) strlcpy_debug(dst,src,siz)
|
310 |
| -#define strlcat(dst,src,siz) strlcat_debug(dst,src,siz) |
311 |
| - |
312 | 297 | size_t strlcpy_debug(char *__restrict__ dst, const char *__restrict__ src, size_t siz);
|
313 |
| -size_t strlcat_debug(char *__restrict__ dst, const char *__restrict__ src, size_t siz); |
314 |
| - |
315 | 298 | #endif /* DEBUG_STRL */
|
| 299 | +#endif |
316 | 300 |
|
317 |
| -#endif /* BSD or Apple */ |
| 301 | +#ifndef HAVE_STRLCAT // Need to supply our own. |
| 302 | +#if DEBUG_STRL |
| 303 | +#define strlcat(dst,src,siz) strlcat_debug(dst,src,siz,__FILE__,__func__,__LINE__) |
| 304 | +size_t strlcat_debug(char *__restrict__ dst, const char *__restrict__ src, size_t siz, const char *file, const char *func, int line); |
| 305 | +#else |
| 306 | +#define strlcat(dst,src,siz) strlcat_debug(dst,src,siz) |
| 307 | +size_t strlcat_debug(char *__restrict__ dst, const char *__restrict__ src, size_t siz); |
| 308 | +#endif /* DEBUG_STRL */ |
| 309 | +#endif |
318 | 310 |
|
319 | 311 |
|
320 | 312 | #endif /* ifndef DIREWOLF_H */
|
0 commit comments