ctype.h 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. /*
  2. * Copyright 2017-2022 The OpenSSL Project Authors. All Rights Reserved.
  3. *
  4. * Licensed under the Apache License 2.0 (the "License"). You may not use
  5. * this file except in compliance with the License. You can obtain a copy
  6. * in the file LICENSE in the source distribution or at
  7. * https://www.openssl.org/source/license.html
  8. */
  9. /*
  10. * This version of ctype.h provides a standardised and platform
  11. * independent implementation that supports seven bit ASCII characters.
  12. * The specific intent is to not pass extended ASCII characters (> 127)
  13. * even if the host operating system would.
  14. *
  15. * There is EBCDIC support included for machines which use this. However,
  16. * there are a number of concerns about how well EBCDIC is supported
  17. * throughout the rest of the source code. Refer to issue #4154 for
  18. * details.
  19. */
  20. #ifndef OSSL_CRYPTO_CTYPE_H
  21. # define OSSL_CRYPTO_CTYPE_H
  22. # pragma once
  23. # include <openssl/e_os2.h>
  24. # define CTYPE_MASK_lower 0x1
  25. # define CTYPE_MASK_upper 0x2
  26. # define CTYPE_MASK_digit 0x4
  27. # define CTYPE_MASK_space 0x8
  28. # define CTYPE_MASK_xdigit 0x10
  29. # define CTYPE_MASK_blank 0x20
  30. # define CTYPE_MASK_cntrl 0x40
  31. # define CTYPE_MASK_graph 0x80
  32. # define CTYPE_MASK_print 0x100
  33. # define CTYPE_MASK_punct 0x200
  34. # define CTYPE_MASK_base64 0x400
  35. # define CTYPE_MASK_asn1print 0x800
  36. # define CTYPE_MASK_alpha (CTYPE_MASK_lower | CTYPE_MASK_upper)
  37. # define CTYPE_MASK_alnum (CTYPE_MASK_alpha | CTYPE_MASK_digit)
  38. /*
  39. * The ascii mask assumes that any other classification implies that
  40. * the character is ASCII and that there are no ASCII characters
  41. * that aren't in any of the classifications.
  42. *
  43. * This assumption holds at the moment, but it might not in the future.
  44. */
  45. # define CTYPE_MASK_ascii (~0)
  46. # ifdef CHARSET_EBCDIC
  47. int ossl_toascii(int c);
  48. int ossl_fromascii(int c);
  49. # else
  50. # define ossl_toascii(c) (c)
  51. # define ossl_fromascii(c) (c)
  52. # endif
  53. int ossl_ctype_check(int c, unsigned int mask);
  54. int ossl_tolower(int c);
  55. int ossl_toupper(int c);
  56. int ossl_isdigit(int c);
  57. int ossl_islower(int c);
  58. int ossl_isupper(int c);
  59. int ossl_ascii_isdigit(int c);
  60. # define ossl_isalnum(c) (ossl_ctype_check((c), CTYPE_MASK_alnum))
  61. # define ossl_isalpha(c) (ossl_ctype_check((c), CTYPE_MASK_alpha))
  62. # ifdef CHARSET_EBCDIC
  63. # define ossl_isascii(c) (ossl_ctype_check((c), CTYPE_MASK_ascii))
  64. # else
  65. # define ossl_isascii(c) (((c) & ~127) == 0)
  66. # endif
  67. # define ossl_isblank(c) (ossl_ctype_check((c), CTYPE_MASK_blank))
  68. # define ossl_iscntrl(c) (ossl_ctype_check((c), CTYPE_MASK_cntrl))
  69. # define ossl_isgraph(c) (ossl_ctype_check((c), CTYPE_MASK_graph))
  70. # define ossl_isprint(c) (ossl_ctype_check((c), CTYPE_MASK_print))
  71. # define ossl_ispunct(c) (ossl_ctype_check((c), CTYPE_MASK_punct))
  72. # define ossl_isspace(c) (ossl_ctype_check((c), CTYPE_MASK_space))
  73. # define ossl_isxdigit(c) (ossl_ctype_check((c), CTYPE_MASK_xdigit))
  74. # define ossl_isbase64(c) (ossl_ctype_check((c), CTYPE_MASK_base64))
  75. # define ossl_isasn1print(c) (ossl_ctype_check((c), CTYPE_MASK_asn1print))
  76. #endif