-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTypes.h
More file actions
32 lines (25 loc) · 698 Bytes
/
Types.h
File metadata and controls
32 lines (25 loc) · 698 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
//===----------------------------------------------------------------------===//
// JoshMake Build Infrastructure
//
// This file is distributed under the MIT Open Source License. See
// LICENSE.TXT for details.
//===----------------------------------------------------------------------===//
#pragma once
#ifndef JoshMake_Types_h
#define JoshMake_Types_h
#include <filesystem>
#include <inttypes.h>
namespace std
{
namespace filesystem = std::experimental::filesystem;
}
using byte = char;
using i8 = int8_t;
using i16 = int16_t;
using i32 = int32_t;
using i64 = int64_t;
using u8 = uint8_t;
using u16 = uint16_t;
using u32 = uint32_t;
using u64 = uint64_t;
#endif