summaryrefslogtreecommitdiff
path: root/PACE/pace/strings.h
blob: 9f5dac714a550553622ba81ad73f67602a33fd4a (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
45
/* $Id$

 * ============================================================================
 *
 * = LIBRARY
 *    pace
 *
 * = FILENAME
 *    strings.h
 *
 * = AUTHOR
 *    Luther Baker
 *
 * ============================================================================ */


#ifndef PACE_STRINGS_H
#define PACE_STRINGS_H


#include "pace/defines.h"
#include "pace/unistd.h"


# if defined (PACE_HAS_CPLUSPLUS)
extern "C" {
# endif /* PACE_HAS_CPLUSPLUS */

  PACE_INLINE int pace_strcasecmp (const char * s1,
                              const char * s2);

  PACE_INLINE int pace_strncasecmp (const char * s1,
                               const char * s2,
                               size_t n);

# if defined (PACE_HAS_CPLUSPLUS)
}
# endif /* PACE_HAS_CPLUSPLUS */

# if defined (PACE_HAS_INLINE)
# include "strings.inl"
# endif /* PACE_HAS_INLINE */


#endif /* PACE_STRINGS_H */