mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-25 00:50:22 +00:00
18 lines
348 B
C
18 lines
348 B
C
|
#pragma once
|
||
|
|
||
|
#include <stdint.h>
|
||
|
|
||
|
typedef uint8_t byte;
|
||
|
typedef uint16_t word;
|
||
|
typedef uint32_t dword;
|
||
|
typedef uint64_t qword;
|
||
|
|
||
|
typedef int8_t signed_byte;
|
||
|
typedef int16_t signed_word;
|
||
|
typedef int32_t signed_dword;
|
||
|
typedef int64_t signed_qword;
|
||
|
|
||
|
constexpr unsigned KB = 1024;
|
||
|
constexpr unsigned MB = KB * KB;
|
||
|
constexpr unsigned GB = KB * KB * KB;
|