logo

oasis-root

Compiled tree of Oasis Linux based on own branch at <https://hacktivis.me/git/oasis/> git clone https://anongit.hacktivis.me/git/oasis-root.git

ctype.h.0p (3775B)


  1. '\" et
  2. .TH ctype.h "0P" 2017 "IEEE/The Open Group" "POSIX Programmer's Manual"
  3. .\"
  4. .SH PROLOG
  5. This manual page is part of the POSIX Programmer's Manual.
  6. The Linux implementation of this interface may differ (consult
  7. the corresponding Linux manual page for details of Linux behavior),
  8. or the interface may not be implemented on Linux.
  9. .\"
  10. .SH NAME
  11. ctype.h
  12. \(em character types
  13. .SH SYNOPSIS
  14. .LP
  15. .nf
  16. #include <ctype.h>
  17. .fi
  18. .SH DESCRIPTION
  19. Some of the functionality described on this reference page extends the
  20. ISO\ C standard. Applications shall define the appropriate feature test macro
  21. (see the System Interfaces volume of POSIX.1\(hy2017,
  22. .IR "Section 2.2" ", " "The Compilation Environment")
  23. to enable the visibility of these symbols in this header.
  24. .P
  25. The
  26. .IR <ctype.h>
  27. header shall define the
  28. .BR locale_t
  29. type as described in
  30. .IR <locale.h> ,
  31. representing a locale object.
  32. .P
  33. The following shall be declared as functions and may also be defined as
  34. macros. Function prototypes shall be provided for use with ISO\ C standard
  35. compilers.
  36. .sp
  37. .RS 4
  38. .nf
  39. int isalnum(int);
  40. int isalnum_l(int, locale_t);
  41. int isalpha(int);
  42. int isalpha_l(int, locale_t);
  43. int isascii(int);
  44. int isblank(int);
  45. int isblank_l(int, locale_t);
  46. int iscntrl(int);
  47. int iscntrl_l(int, locale_t);
  48. int isdigit(int);
  49. int isdigit_l(int, locale_t);
  50. int isgraph(int);
  51. int isgraph_l(int, locale_t);
  52. int islower(int);
  53. int islower_l(int, locale_t);
  54. int isprint(int);
  55. int isprint_l(int, locale_t);
  56. int ispunct(int);
  57. int ispunct_l(int, locale_t);
  58. int isspace(int);
  59. int isspace_l(int, locale_t);
  60. int isupper(int);
  61. int isupper_l(int, locale_t);
  62. int isxdigit(int);
  63. int isxdigit_l(int, locale_t);
  64. int toascii(int);
  65. int tolower(int);
  66. int tolower_l(int, locale_t);
  67. int toupper(int);
  68. int toupper_l(int, locale_t);
  69. .fi
  70. .P
  71. .RE
  72. .P
  73. The
  74. .IR <ctype.h>
  75. header shall define the following as macros:
  76. .sp
  77. .RS 4
  78. .nf
  79. int _toupper(int);
  80. int _tolower(int);
  81. .fi
  82. .P
  83. .RE
  84. .LP
  85. .IR "The following sections are informative."
  86. .SH "APPLICATION USAGE"
  87. None.
  88. .SH RATIONALE
  89. None.
  90. .SH "FUTURE DIRECTIONS"
  91. None.
  92. .SH "SEE ALSO"
  93. .IR "\fB<locale.h>\fP"
  94. .P
  95. The System Interfaces volume of POSIX.1\(hy2017,
  96. .IR "Section 2.2" ", " "The Compilation Environment",
  97. .IR "\fIisalnum\fR\^(\|)",
  98. .IR "\fIisalpha\fR\^(\|)",
  99. .IR "\fIisascii\fR\^(\|)",
  100. .IR "\fIisblank\fR\^(\|)",
  101. .IR "\fIiscntrl\fR\^(\|)",
  102. .IR "\fIisdigit\fR\^(\|)",
  103. .IR "\fIisgraph\fR\^(\|)",
  104. .IR "\fIislower\fR\^(\|)",
  105. .IR "\fIisprint\fR\^(\|)",
  106. .IR "\fIispunct\fR\^(\|)",
  107. .IR "\fIisspace\fR\^(\|)",
  108. .IR "\fIisupper\fR\^(\|)",
  109. .IR "\fIisxdigit\fR\^(\|)",
  110. .IR "\fImblen\fR\^(\|)",
  111. .IR "\fImbstowcs\fR\^(\|)",
  112. .IR "\fImbtowc\fR\^(\|)",
  113. .IR "\fIsetlocale\fR\^(\|)",
  114. .IR "\fItoascii\fR\^(\|)",
  115. .IR "\fItolower\fR\^(\|)",
  116. .IR "\fI_tolower\fR\^(\|)",
  117. .IR "\fItoupper\fR\^(\|)",
  118. .IR "\fI_toupper\fR\^(\|)",
  119. .IR "\fIwcstombs\fR\^(\|)",
  120. .IR "\fIwctomb\fR\^(\|)"
  121. .\"
  122. .SH COPYRIGHT
  123. Portions of this text are reprinted and reproduced in electronic form
  124. from IEEE Std 1003.1-2017, Standard for Information Technology
  125. -- Portable Operating System Interface (POSIX), The Open Group Base
  126. Specifications Issue 7, 2018 Edition,
  127. Copyright (C) 2018 by the Institute of
  128. Electrical and Electronics Engineers, Inc and The Open Group.
  129. In the event of any discrepancy between this version and the original IEEE and
  130. The Open Group Standard, the original IEEE and The Open Group Standard
  131. is the referee document. The original Standard can be obtained online at
  132. http://www.opengroup.org/unix/online.html .
  133. .PP
  134. Any typographical or formatting errors that appear
  135. in this page are most likely
  136. to have been introduced during the conversion of the source files to
  137. man page format. To report such errors, see
  138. https://www.kernel.org/doc/man-pages/reporting_bugs.html .