Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' of https://framagit.org/simgrid/simgrid into CRTP
[simgrid.git] / src / bindings / lua / lua_utils.hpp
1 /* Copyright (c) 2010-2019. The SimGrid Team. All rights reserved.          */
2
3 /* This program is free software; you can redistribute it and/or modify it
4  * under the terms of the license (GNU LGPL) which comes with this package. */
5
6 /* SimGrid Lua helper functions                                             */
7
8 #ifndef LUA_UTILS_HPP
9 #define LUA_UTILS_HPP
10
11 #include <lua.h>
12
13 const char* sglua_tostring(lua_State* L, int index);
14 const char* sglua_keyvalue_tostring(lua_State* L, int key_index, int value_index);
15
16 #endif