aboutsummaryrefslogtreecommitdiff
path: root/src/stage1/parse_f128.h
blob: 82cdf6c9a0bfcc38a6e91f2e2da29df58cb757a5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*
 * Copyright (c) 2015 Andrew Kelley
 *
 * This file is part of zig, which is MIT licensed.
 * See http://opensource.org/licenses/MIT
 */

#ifndef ZIG_PARSE_F128_H
#define ZIG_PARSE_F128_H

#include "softfloat_types.h"

#ifdef __cplusplus
#define ZIG_EXTERN_C extern "C"
#else
#define ZIG_EXTERN_C
#endif

ZIG_EXTERN_C float128_t parse_f128(const char *s, char **p);

#endif