gsc-tool/src/stdinc.hpp

50 lines
917 B
C++
Raw Normal View History

2023-01-23 17:31:08 -05:00
// Copyright 2023 xensik. All rights reserved.
2020-05-21 07:32:38 -04:00
//
// Use of this source code is governed by a GNU GPLv3 license
// that can be found in the LICENSE file.
#pragma once
2022-04-12 13:13:10 -04:00
#include <cstdio>
2020-05-21 07:32:38 -04:00
#include <algorithm>
2022-04-12 13:13:10 -04:00
#include <array>
2020-05-21 07:32:38 -04:00
#include <filesystem>
2022-04-12 13:13:10 -04:00
#include <fstream>
2020-05-21 07:32:38 -04:00
#include <functional>
#include <iostream>
#include <list>
2022-04-12 13:13:10 -04:00
#include <map>
#include <memory>
#include <queue>
#include <deque>
2022-04-12 13:13:10 -04:00
#include <regex>
#include <set>
2020-05-21 07:32:38 -04:00
#include <sstream>
2022-04-12 13:13:10 -04:00
#include <stack>
#include <stdexcept>
#include <string>
2020-05-21 07:32:38 -04:00
#include <unordered_map>
#include <unordered_set>
2022-04-12 13:13:10 -04:00
#include <vector>
2020-05-21 07:32:38 -04:00
using namespace std::literals;
2023-01-23 17:31:08 -05:00
#include "fmt/core.h"
namespace xsk
{
using usize = std::size_t;
using u8 = std::uint8_t;
using u16 = std::uint16_t;
using u32 = std::uint32_t;
using u64 = std::uint64_t;
using i8 = std::int8_t;
using i16 = std::int16_t;
using i32 = std::int32_t;
using i64 = std::int64_t;
using f32 = float;
using f64 = double;
};