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

stdbool.h.0p (2221B)


  1. '\" et
  2. .TH stdbool.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. stdbool.h
  12. \(em boolean type and values
  13. .SH SYNOPSIS
  14. .LP
  15. .nf
  16. #include <stdbool.h>
  17. .fi
  18. .SH DESCRIPTION
  19. The functionality described on this reference page is aligned with the
  20. ISO\ C standard. Any conflict between the requirements described here and the
  21. ISO\ C standard is unintentional. This volume of POSIX.1\(hy2017 defers to the ISO\ C standard.
  22. .P
  23. The
  24. .IR <stdbool.h>
  25. header shall define the following macros:
  26. .IP bool 8
  27. Expands to
  28. .BR _Bool .
  29. .IP true 8
  30. Expands to the integer constant 1.
  31. .IP false 8
  32. Expands to the integer constant 0.
  33. .IP "_\|_bool_true_false_are_defined" 8
  34. .br
  35. Expands to the integer constant 1.
  36. .P
  37. An application may undefine and then possibly redefine the macros bool,
  38. true, and false.
  39. .LP
  40. .IR "The following sections are informative."
  41. .SH "APPLICATION USAGE"
  42. None.
  43. .SH RATIONALE
  44. None.
  45. .SH "FUTURE DIRECTIONS"
  46. The ability to undefine and redefine the macros bool, true, and false
  47. is an obsolescent feature and may be removed in a future version.
  48. .SH "SEE ALSO"
  49. None.
  50. .\"
  51. .SH COPYRIGHT
  52. Portions of this text are reprinted and reproduced in electronic form
  53. from IEEE Std 1003.1-2017, Standard for Information Technology
  54. -- Portable Operating System Interface (POSIX), The Open Group Base
  55. Specifications Issue 7, 2018 Edition,
  56. Copyright (C) 2018 by the Institute of
  57. Electrical and Electronics Engineers, Inc and The Open Group.
  58. In the event of any discrepancy between this version and the original IEEE and
  59. The Open Group Standard, the original IEEE and The Open Group Standard
  60. is the referee document. The original Standard can be obtained online at
  61. http://www.opengroup.org/unix/online.html .
  62. .PP
  63. Any typographical or formatting errors that appear
  64. in this page are most likely
  65. to have been introduced during the conversion of the source files to
  66. man page format. To report such errors, see
  67. https://www.kernel.org/doc/man-pages/reporting_bugs.html .