get_symbol_kind method

int get_symbol_kind(
  1. Z3_context c,
  2. Z3_symbol s
)

@name Accessors / /**@{/ /** \brief Return \c Z3_INT_SYMBOL if the symbol was constructed using #Z3_mk_int_symbol, and \c Z3_STRING_SYMBOL if the symbol was constructed using #Z3_mk_string_symbol.

def_API('Z3_get_symbol_kind', UINT, (_in(CONTEXT), _in(SYMBOL)))

Implementation

int get_symbol_kind(
  Z3_context c,
  Z3_symbol s,
) {
  return _get_symbol_kind(
    c,
    s,
  );
}