diff options
Diffstat (limited to 'src/auxiliar.h')
-rw-r--r-- | src/auxiliar.h | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/src/auxiliar.h b/src/auxiliar.h index ff20b50..8a18bcf 100644 --- a/src/auxiliar.h +++ b/src/auxiliar.h | |||
@@ -1,5 +1,5 @@ | |||
1 | #ifndef AUX_H | 1 | #ifndef AUXILIAR_H |
2 | #define AUX_H | 2 | #define AUXILIAR_H |
3 | /*=========================================================================*\ | 3 | /*=========================================================================*\ |
4 | * Auxiliar routines for class hierarchy manipulation | 4 | * Auxiliar routines for class hierarchy manipulation |
5 | * LuaSocket toolkit (but completely independent of other LuaSocket modules) | 5 | * LuaSocket toolkit (but completely independent of other LuaSocket modules) |
@@ -34,15 +34,15 @@ | |||
34 | #include "lua.h" | 34 | #include "lua.h" |
35 | #include "lauxlib.h" | 35 | #include "lauxlib.h" |
36 | 36 | ||
37 | int aux_open(lua_State *L); | 37 | int auxiliar_open(lua_State *L); |
38 | void aux_newclass(lua_State *L, const char *classname, luaL_reg *func); | 38 | void auxiliar_newclass(lua_State *L, const char *classname, luaL_reg *func); |
39 | void aux_add2group(lua_State *L, const char *classname, const char *group); | 39 | void auxiliar_add2group(lua_State *L, const char *classname, const char *group); |
40 | void aux_setclass(lua_State *L, const char *classname, int objidx); | 40 | void auxiliar_setclass(lua_State *L, const char *classname, int objidx); |
41 | void *aux_checkclass(lua_State *L, const char *classname, int objidx); | 41 | void *auxiliar_checkclass(lua_State *L, const char *classname, int objidx); |
42 | void *aux_checkgroup(lua_State *L, const char *groupname, int objidx); | 42 | void *auxiliar_checkgroup(lua_State *L, const char *groupname, int objidx); |
43 | void *aux_getclassudata(lua_State *L, const char *groupname, int objidx); | 43 | void *auxiliar_getclassudata(lua_State *L, const char *groupname, int objidx); |
44 | void *aux_getgroupudata(lua_State *L, const char *groupname, int objidx); | 44 | void *auxiliar_getgroupudata(lua_State *L, const char *groupname, int objidx); |
45 | int aux_checkboolean(lua_State *L, int objidx); | 45 | int auxiliar_checkboolean(lua_State *L, int objidx); |
46 | int aux_tostring(lua_State *L); | 46 | int auxiliar_tostring(lua_State *L); |
47 | 47 | ||
48 | #endif /* AUX_H */ | 48 | #endif /* AUXILIAR_H */ |