On this page:
_  stdbool
_  bool
_  void

3.3 Other Atomic Types

value

_stdbool : ctype?

The _stdbool type represents the C99 bool type from <stdbool.h>. It translates #f to a 0 bool and any other value to a 1 bool.

Added in version 6.0.0.6 of package base.

value

_bool : ctype?

Translates #f to a 0 int and any other value to a 1 int, reflecting one of many traditional (i.e., pre-C99) encodings of booleans. See also _stdbool.

value

_void : ctype?

Indicates a Racket #<void> return value, and it cannot be used to translate values to C. This type cannot be used for function inputs.