3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-10 05:00:51 +00:00
z3/src/util/smt2_util.h
Leonardo de Moura d8cd3fc3ab Reorganizing the code
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
2012-10-20 19:54:08 -07:00

29 lines
435 B
C++

/*++
Copyright (c) 2011 Microsoft Corporation
Module Name:
smt2_util.h
Abstract:
Goodies for SMT2 standard
Author:
Leonardo (leonardo) 2012-10-20
Notes:
--*/
#ifndef _SMT2_UTIL_H_
#define _SMT2_UTIL_H_
#include"symbol.h"
bool is_smt2_simple_symbol_char(char c);
bool is_smt2_quoted_symbol(char const * s);
bool is_smt2_quoted_symbol(symbol const & s);
std::string mk_smt2_quoted_symbol(symbol const & s);
#endif