15 lines
357 B
C
15 lines
357 B
C
|
/*
|
||
|
Copyright (c) 2014 Microsoft Corporation. All rights reserved.
|
||
|
Released under Apache 2.0 license as described in the file LICENSE.
|
||
|
|
||
|
Author: Leonardo de Moura
|
||
|
*/
|
||
|
#pragma once
|
||
|
#include "util/lua.h"
|
||
|
#include "kernel/expr.h"
|
||
|
|
||
|
namespace lean {
|
||
|
expr mk_resolve_macro(expr const & l, expr const & H1, expr const & H2);
|
||
|
void open_resolve_macro(lua_State * L);
|
||
|
}
|