Add documentation for the newly added OBJ up calls
[openssl.git] / crypto / ctype.c
index e7bc25b9766130a5180635a6060356fb0913bdca..83c24a546f53b3069926788d0e5d76ad6d2f6a7c 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2017 The OpenSSL Project Authors. All Rights Reserved.
+ * Copyright 2017-2021 The OpenSSL Project Authors. All Rights Reserved.
  *
  * Licensed under the Apache License 2.0 (the "License").  You may not use
  * this file except in compliance with the License.  You can obtain a copy
@@ -9,8 +9,8 @@
 
 #include <string.h>
 #include <stdio.h>
-#include "internal/ctype.h"
-#include "openssl/ebcdic.h"
+#include "crypto/ctype.h"
+#include <openssl/ebcdic.h>
 
 /*
  * Define the character classes for each character in the seven bit ASCII
@@ -273,7 +273,7 @@ int ossl_toupper(int c)
     return ossl_islower(c) ? c ^ case_change : c;
 }
 
-int ascii_isdigit(const char inchar) {
+int ossl_ascii_isdigit(const char inchar) {
     if (inchar > 0x2F && inchar < 0x3A)
         return 1;
     return 0;