summaryrefslogtreecommitdiff
path: root/src/utils/utils.h
blob: e949bd1cddf290c8914cafce486730990f7169bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
/*
 * This file is part of Hubbub.
 * Licensed under the MIT License,
 *                http://www.opensource.org/licenses/mit-license.php
 * Copyright 2007 John-Mark Bell <jmb@netsurf-browser.org>
 */

#ifndef hubbub_utils_h_
#define hubbub_utils_h_

#ifdef BUILD_TARGET_riscos
  /* If we're building with Norcroft, then we need to haul in 
   * unixlib.h from TCPIPLibs for useful things like strncasecmp
   */
  #ifdef __CC_NORCROFT
  #include <unixlib.h>
  #endif
#endif

#ifdef BUILD_TARGET_windows
  #define strncasecmp _strnicmp
#endif

#ifndef max
#define max(a,b) ((a)>(b)?(a):(b))
#endif

#ifndef min
#define min(a,b) ((a)<(b)?(a):(b))
#endif

#ifndef SLEN
/* Calculate length of a string constant */
#define SLEN(s) (sizeof((s)) - 1) /* -1 for '\0' */
#endif

#ifndef UNUSED
#define UNUSED(x) ((x)=(x))
#endif

/* Useful for iterating over arrays */
#define N_ELEMENTS(x)   sizeof((x)) / sizeof((x)[0])

#endif