lean2/src/api/lean_string.h

20 lines
373 B
C
Raw Normal View History

/*
Copyright (c) 2015 Microsoft Corporation. All rights reserved.
Released under Apache 2.0 license as described in the file LICENSE.
Author: Leonardo de Moura
*/
#ifndef _LEAN_STRING_H
#define _LEAN_STRING_H
#ifdef __cplusplus
extern "C" {
#endif
/** \brief Delete a string allocated by Lean */
2015-08-18 18:01:46 +00:00
void lean_string_del(char const * s);
#ifdef __cplusplus
};
#endif
#endif