This site has been archived and made available for preservation purposes. No edits can be made.

State

[top]Definition

Code cpp:
enum State : bool
{
	True = true,
	False = false
};
Code c:
typedef uint8_t State;