3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-16 05:48:44 +00:00
z3/src/api/z3_private.h
Nuno Lopes 73a24ca0a9 remove '#include <iostream>' from headers and from unneeded places
It's harmful to have iostream everywhere as it injects functions in the compiled files
2022-06-17 14:10:19 +01:00

37 lines
450 B
C

/*++
Copyright (c) 2007 Microsoft Corporation
Module Name:
z3_private.h
Abstract:
Z3 API.
Author:
Nikolaj Bjorner (nbjorner)
Leonardo de Moura (leonardo) 2007-06-8
Notes:
--*/
#include "util/rational.h"
#include "api/z3_macros.h"
#pragma once
#ifdef __cplusplus
extern "C" {
#endif // __cplusplus
bool Z3_API Z3_get_numeral_rational(Z3_context c, Z3_ast a, rational& r);
#ifdef __cplusplus
};
#endif // __cplusplus