/* Copyright (C) 1999-2019 by The D Language Foundation, All Rights Reserved * http://www.digitalmars.com * Distributed under the Boost Software License, Version 1.0. * http://www.boost.org/LICENSE_1_0.txt * https://github.com/dlang/dmd/blob/master/src/dmd/root/port.h */ #pragma once // Portable wrapper around compiler/system specific things. // The idea is to minimize #ifdef's in the app code. #include "dsystem.h" // for alloca #if _MSC_VER typedef __int64 longlong; typedef unsigned __int64 ulonglong; #else typedef long long longlong; typedef unsigned long long ulonglong; #endif typedef unsigned char utf8_t; struct Port { static int memicmp(const char *s1, const char *s2, size_t n); static char *strupr(char *s); static bool isFloat32LiteralOutOfRange(const char *s); static bool isFloat64LiteralOutOfRange(const char *s); static void writelongLE(unsigned value, void *buffer); static unsigned readlongLE(void *buffer); static void writelongBE(unsigned value, void *buffer); static unsigned readlongBE(void *buffer); static unsigned readwordLE(void *buffer); static unsigned readwordBE(void *buffer); static void valcpy(void *dst, uint64_t val, size_t size); }; |