ifdef out unused functions that are also missing prototypes.
authorEzra Peisach <epeisach@mit.edu>
Mon, 5 Jan 2009 05:01:04 +0000 (05:01 +0000)
committerEzra Peisach <epeisach@mit.edu>
Mon, 5 Jan 2009 05:01:04 +0000 (05:01 +0000)
krb5int_utf8_islower and krb5int_utf8_isupper.

git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@21697 dc483132-0cff-0310-8789-dd5450dbe970

src/util/support/utf8.c

index 8712c6751ea71c76fe4819be5fddc4f62bb1b426..f0d764e4a822e36b57c0ea15d5e7d4e48ef04da5 100644 (file)
@@ -415,6 +415,7 @@ int krb5int_utf8_isalnum(const char * p)
     return KRB5_ALNUM(c);
 }
 
+#if 0
 int krb5int_utf8_islower(const char * p)
 {
     unsigned c = * (const unsigned char *) p;
@@ -435,6 +436,7 @@ int krb5int_utf8_isupper(const char * p)
     return KRB5_UPPER(c);
 }
 #endif
+#endif
 
 
 /*