]> git.sur5r.net Git - openldap/blob - include/ac/string.h
s/Id/OpenLDAP/ in RCSids
[openldap] / include / ac / string.h
1 /* Generic string.h */
2 /* $OpenLDAP$ */
3 /*
4  * Copyright 1998,1999 The OpenLDAP Foundation, Redwood City, California, USA
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms are permitted only
8  * as authorized by the OpenLDAP Public License.  A copy of this
9  * license is available at http://www.OpenLDAP.org/license.html or
10  * in file LICENSE in the top-level directory of the distribution.
11  */
12
13 #ifndef _AC_STRING_H
14 #define _AC_STRING_H
15
16 #ifdef STDC_HEADERS
17 #       include <string.h>
18
19 #else
20 #       ifdef HAVE_STRING_H
21 #               include <string.h>
22 #       elif HAVE_STRINGS_H
23 #               include <strings.h>
24 #       endif
25
26 #       ifdef HAVE_MEMORY_H
27 #               include <memory.h>
28 #       endif
29
30 #       ifndef HAVE_STRRCHR
31 #               undef strchr
32 #               define strchr index
33 #               undef strrchr
34 #               define strrchr rindex
35 #       endif
36
37 #       ifndef HAVE_MEMCPY
38 #               undef memcpy
39 #               define memcpy(d, s, n)          ((void) bcopy ((s), (d), (n)))
40 #               undef memmove
41 #               define memmove(d, s, n)         ((void) bcopy ((s), (d), (n)))
42 #       endif
43 #endif
44
45 /* use ldap_pvt_strtok instead of strtok or strtok_r! */
46 LDAP_F(char *) ldap_pvt_strtok LDAP_P((
47         char *str, const char *delim, char **pos ));
48
49 LDAP_F(char *) ldap_pvt_strdup LDAP_P((
50         const char * s ));
51
52 #ifndef HAVE_STRDUP
53         /* strdup() is missing, declare our own version */
54 #       undef strdup
55 #       define strdup(s) ldap_pvt_strdup(s)
56 #else
57         /* some systems fail to declare strdup */
58         extern char *(strdup)();
59 #endif
60
61 /*
62  * some systems fail to declare strcasecmp() and strncasecmp()
63  * we need them declared so we can obtain pointers to them
64  */
65 extern int (strcasecmp)();
66 extern int (strncasecmp)();
67
68 #ifndef SAFEMEMCPY
69 #       if defined( HAVE_MEMMOVE )
70 #               define SAFEMEMCPY( d, s, n )    memmove((d), (s), (n))
71 #       elif defined( HAVE_BCOPY )
72 #               define SAFEMEMCPY( d, s, n )    bcopy((s), (d), (n))
73 #       else
74                 /* nothing left but memcpy() */
75 #               define SAFEMEMCPY( d, s, n )    memcpy((d), (s), (n))
76 #       endif
77 #endif
78
79 #endif /* _AC_STRING_H */