]> git.sur5r.net Git - openldap/blobdiff - libraries/libldap/string.c
Re: Patch: ctype functions require 'unsigned char' args (ITS#1678)
[openldap] / libraries / libldap / string.c
index 494248531ecade80d5bfc09f19fd1072a4a55288..aaf76c609d6f45174d96c833c94d0385fabc3c05 100644 (file)
@@ -1,13 +1,20 @@
+/* $OpenLDAP$ */
 /*
- * Copyright 1998-1999 The OpenLDAP Foundation, All Rights Reserved.
+ * Copyright 1998-2002 The OpenLDAP Foundation, All Rights Reserved.
  * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
  */
 
+/*
+ * Locale-specific 1-byte character versions
+ * See utf-8.c for UTF-8 versions
+ */
+
 #include "portable.h"
 
 #include <ac/stdlib.h>
 #include <ac/string.h>
 #include <ac/time.h>
+#include <ac/ctype.h>
 
 #include "ldap-int.h"
 
@@ -91,15 +98,27 @@ char *(ldap_pvt_strtok)( char *str, const char *delim, char **pos )
 }
 
 char *
-(ldap_pvt_strdup)( const char *s )
+ldap_pvt_str2upper( char *str )
+{
+       char    *s;
+
+       /* to upper */
+       for ( s = str; *s; s++ ) {
+               *s = TOUPPER( (unsigned char) *s );
+       }
+
+       return( str );
+}
+
+char *
+ldap_pvt_str2lower( char *str )
 {
-       char    *p;
-       size_t  len = strlen( s ) + 1;
+       char    *s;
 
-       if ( (p = (char *) malloc( len )) == NULL ) {
-               return( NULL );
+       /* to lower */
+       for ( s = str; *s; s++ ) {
+               *s = TOLOWER( (unsigned char) *s );
        }
 
-       memcpy( p, s, len );
-       return( p );
+       return( str );
 }