To do so, a few dependencies have been imported: * external/bsd/lutok * external/mit/lua * external/public-domain/sqlite * external/public-domain/xz The Kyua framework is the new generation of ATF (Automated Test Framework), it is composed of: * external/bsd/atf * external/bsd/kyua-atf-compat * external/bsd/kyua-cli * external/bsd/kyua-tester * tests Kyua/ATF being written in C++, it depends on libstdc++ which is provided by GCC. As this is not part of the sources, Kyua is only compiled when the native GCC utils are installed. To install Kyua do the following: * In a cross-build enviromnent, add the following to the build.sh commandline: -V MKBINUTILS=yes -V MKGCCCMDS=yes WARNING: At this point the import is still experimental, and not supported on native builds (a.k.a make build). Change-Id: I26aee23c5bbd2d64adcb7c1beb98fe0d479d7ada
43 lines
1.2 KiB
C
43 lines
1.2 KiB
C
/* $NetBSD: ltable.h,v 1.1.1.2 2012/03/15 00:08:11 alnsn Exp $ */
|
|
|
|
/*
|
|
** $Id: ltable.h,v 1.1.1.2 2012/03/15 00:08:11 alnsn Exp $
|
|
** Lua tables (hash)
|
|
** See Copyright Notice in lua.h
|
|
*/
|
|
|
|
#ifndef ltable_h
|
|
#define ltable_h
|
|
|
|
#include "lobject.h"
|
|
|
|
|
|
#define gnode(t,i) (&(t)->node[i])
|
|
#define gkey(n) (&(n)->i_key.nk)
|
|
#define gval(n) (&(n)->i_val)
|
|
#define gnext(n) ((n)->i_key.nk.next)
|
|
|
|
#define key2tval(n) (&(n)->i_key.tvk)
|
|
|
|
|
|
LUAI_FUNC const TValue *luaH_getnum (Table *t, int key);
|
|
LUAI_FUNC TValue *luaH_setnum (lua_State *L, Table *t, int key);
|
|
LUAI_FUNC const TValue *luaH_getstr (Table *t, TString *key);
|
|
LUAI_FUNC TValue *luaH_setstr (lua_State *L, Table *t, TString *key);
|
|
LUAI_FUNC const TValue *luaH_get (Table *t, const TValue *key);
|
|
LUAI_FUNC TValue *luaH_set (lua_State *L, Table *t, const TValue *key);
|
|
LUAI_FUNC Table *luaH_new (lua_State *L, int narray, int lnhash);
|
|
LUAI_FUNC void luaH_resizearray (lua_State *L, Table *t, int nasize);
|
|
LUAI_FUNC void luaH_free (lua_State *L, Table *t);
|
|
LUAI_FUNC int luaH_next (lua_State *L, Table *t, StkId key);
|
|
LUAI_FUNC int luaH_getn (Table *t);
|
|
|
|
|
|
#if defined(LUA_DEBUG)
|
|
LUAI_FUNC Node *luaH_mainposition (const Table *t, const TValue *key);
|
|
LUAI_FUNC int luaH_isdummy (Node *n);
|
|
#endif
|
|
|
|
|
|
#endif
|