boost_charconv 0.1.0

Boost C++ library boost_charconv packaged using Zanbil
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright 2023 Matt Borland
// Distributed under the Boost Software License, Version 1.0.
// https://www.boost.org/LICENSE_1_0.txt

#include <quadmath.h>

int main()
{
    __float128 f = -2.0Q;
    f = fabsq(f);
    __float128 big = HUGE_VALQ;

    return f == big;
}