CLibs
Loading...
Searching...
No Matches
extra_types.h
Go to the documentation of this file.
1/*
2 * Includes most standard types and defines `byte` type.
3 */
4
5#ifndef CLIBS_EXTRA_TYPES_H
6#define CLIBS_EXTRA_TYPES_H
7
8/* imports */
9#include <stdbool.h> /* bool, true/false */
10#include <stddef.h> /* size_t, ptrdiff_t */
11#include <stdint.h> /* int*_t */
12
13typedef int8_t byte;
14
15#endif //CLIBS_EXTRA_TYPES_H
int8_t byte
Definition extra_types.h:13